|
@@ -1,7 +1,8 @@
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
<PropertyGroup>
|
|
<PropertyGroup>
|
|
|
<OutputType>WinExe</OutputType>
|
|
<OutputType>WinExe</OutputType>
|
|
|
- <TargetFramework>netcoreapp3.1</TargetFramework>
|
|
|
|
|
|
|
+ <TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
+ <RollForward>Major</RollForward>
|
|
|
<PublishReadyToRun>false</PublishReadyToRun>
|
|
<PublishReadyToRun>false</PublishReadyToRun>
|
|
|
<TieredCompilation>false</TieredCompilation>
|
|
<TieredCompilation>false</TieredCompilation>
|
|
|
</PropertyGroup>
|
|
</PropertyGroup>
|
|
@@ -18,13 +19,11 @@
|
|
|
<EmbeddedResource Include="Icon.bmp" />
|
|
<EmbeddedResource Include="Icon.bmp" />
|
|
|
</ItemGroup>
|
|
</ItemGroup>
|
|
|
<ItemGroup>
|
|
<ItemGroup>
|
|
|
- <MonoGameContentReference Include="Content\Content.mgcb" />
|
|
|
|
|
- </ItemGroup>
|
|
|
|
|
- <ItemGroup>
|
|
|
|
|
- <TrimmerRootAssembly Include="Microsoft.Xna.Framework.Content.ContentTypeReader" Visible="false" />
|
|
|
|
|
- </ItemGroup>
|
|
|
|
|
- <ItemGroup>
|
|
|
|
|
- <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.0.1641" />
|
|
|
|
|
- <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.0.1641" />
|
|
|
|
|
|
|
+ <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.1.303" />
|
|
|
|
|
+ <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.1.303" />
|
|
|
</ItemGroup>
|
|
</ItemGroup>
|
|
|
|
|
+ <Target Name="RestoreDotnetTools" BeforeTargets="Restore">
|
|
|
|
|
+ <Message Text="Restoring dotnet tools" Importance="High" />
|
|
|
|
|
+ <Exec Command="dotnet tool restore" />
|
|
|
|
|
+ </Target>
|
|
|
</Project>
|
|
</Project>
|