Hello Git!

master
leonard 2021-07-17 19:39:52 +02:00
commit 93e5fb2d8d
4 changed files with 42 additions and 0 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
bin/
obj/
/packages/
riderModule.iml
/_ReSharper.Caches/

16
test.sln Normal file
View File

@ -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

13
test/Program.cs Normal file
View File

@ -0,0 +1,13 @@
using System;
using System.Threading;
namespace test
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}

8
test/test.csproj Normal file
View File

@ -0,0 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
</Project>