Projektdateien hinzufügen.

This commit is contained in:
morpha
2023-03-24 15:38:15 +01:00
parent cde34f5666
commit d41481a6a2
3 changed files with 45 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>

10
ConsoleSnake/Program.cs Normal file
View File

@@ -0,0 +1,10 @@
namespace ConsoleSnake
{
internal class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
}
}
}