commit 93e5fb2d8d7c56a3adaa21a2c767459dfa351577 Author: leonard Date: Sat Jul 17 19:39:52 2021 +0200 Hello Git! diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..add57be --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +bin/ +obj/ +/packages/ +riderModule.iml +/_ReSharper.Caches/ \ No newline at end of file diff --git a/test.sln b/test.sln new file mode 100644 index 0000000..5feb869 --- /dev/null +++ b/test.sln @@ -0,0 +1,16 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "test", "test\test.csproj", "{58509984-00BE-4D10-B116-BCD5D919A062}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {58509984-00BE-4D10-B116-BCD5D919A062}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {58509984-00BE-4D10-B116-BCD5D919A062}.Debug|Any CPU.Build.0 = Debug|Any CPU + {58509984-00BE-4D10-B116-BCD5D919A062}.Release|Any CPU.ActiveCfg = Release|Any CPU + {58509984-00BE-4D10-B116-BCD5D919A062}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/test/Program.cs b/test/Program.cs new file mode 100644 index 0000000..878253d --- /dev/null +++ b/test/Program.cs @@ -0,0 +1,13 @@ +using System; +using System.Threading; + +namespace test +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +} \ No newline at end of file diff --git a/test/test.csproj b/test/test.csproj new file mode 100644 index 0000000..9590466 --- /dev/null +++ b/test/test.csproj @@ -0,0 +1,8 @@ + + + + Exe + net5.0 + + +