Hello Git!

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

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>