configure the project

This commit is contained in:
2025-03-23 12:40:40 +03:00
commit 609de00254
4 changed files with 53 additions and 0 deletions

10
App/App.csproj Normal file
View File

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

7
App/Program.cs Normal file
View File

@@ -0,0 +1,7 @@
namespace Game {
internal class Program {
static int Main(string[] args) {
return 0;
}
}
}