diff options
| author | BoredGuy <osome3717@gmail.com> | 2026-03-27 16:29:32 -0700 |
|---|---|---|
| committer | BoredGuy <osome3717@gmail.com> | 2026-03-27 16:29:32 -0700 |
| commit | 25fdc90968a14ffd44dae65d6fdb3d50e6df9082 (patch) | |
| tree | 3e11812a480ff173a7c65fd9d53e0efc69f5be27 /TankBattleCrossPlatform/TankBattleCrossPlatform.csproj | |
Initial Commit
Diffstat (limited to 'TankBattleCrossPlatform/TankBattleCrossPlatform.csproj')
| -rw-r--r-- | TankBattleCrossPlatform/TankBattleCrossPlatform.csproj | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/TankBattleCrossPlatform/TankBattleCrossPlatform.csproj b/TankBattleCrossPlatform/TankBattleCrossPlatform.csproj new file mode 100644 index 0000000..58ee784 --- /dev/null +++ b/TankBattleCrossPlatform/TankBattleCrossPlatform.csproj @@ -0,0 +1,32 @@ +<Project Sdk="Microsoft.NET.Sdk"> + <PropertyGroup> + <OutputType>WinExe</OutputType> + <TargetFramework>net9.0</TargetFramework> + <RollForward>Major</RollForward> + <PublishReadyToRun>false</PublishReadyToRun> + <TieredCompilation>false</TieredCompilation> + </PropertyGroup> + <PropertyGroup> + <ApplicationManifest>app.manifest</ApplicationManifest> + <ApplicationIcon>Icon.ico</ApplicationIcon> + </PropertyGroup> + <ItemGroup> + <None Remove="Icon.ico" /> + <None Remove="Icon.bmp" /> + </ItemGroup> + <ItemGroup> + <EmbeddedResource Include="Icon.ico"> + <LogicalName>Icon.ico</LogicalName> + </EmbeddedResource> + <EmbeddedResource Include="Icon.bmp"> + <LogicalName>Icon.bmp</LogicalName> + </EmbeddedResource> + </ItemGroup> + <ItemGroup> + <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" /> + <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" /> + </ItemGroup> + <ItemGroup> + <ProjectReference Include="..\TankBattleCore\TankBattleCore.csproj" /> + </ItemGroup> +</Project>
\ No newline at end of file |
