Update TestGame project to build as a WinExe project.

This commit is contained in:
2024-10-21 17:54:20 +02:00
parent fdcf29d6e0
commit 20036be50f
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ using Voile.Rendering;
public class TestGame : Game public class TestGame : Game
{ {
public override string Name => "Jump Adventures 2"; public override string Name => "Test Game";
public override string ResourceRoot => "Resources/"; public override string ResourceRoot => "Resources/";
public override void Initialize() public override void Initialize()

View File

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