feat(gamecli): scaffold .NET solution and test project

This commit is contained in:
meelstorm
2026-07-17 16:39:55 +00:00
committed by EugeneTes
parent 33b9b8e77c
commit 83c6b0f41f
4 changed files with 87 additions and 0 deletions

10
GameCli/GameCli.csproj Normal file
View File

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

2
GameCli/Program.cs Normal file
View File

@@ -0,0 +1,2 @@
// Placeholder. Rewritten in Task 8.
System.Console.Error.WriteLine("GameCli placeholder");