WindowsDX.csproj 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net6.0-windows</TargetFramework>
  5. <RollForward>Major</RollForward>
  6. <PublishReadyToRun>false</PublishReadyToRun>
  7. <TieredCompilation>false</TieredCompilation>
  8. <UseWindowsForms>true</UseWindowsForms>
  9. </PropertyGroup>
  10. <PropertyGroup>
  11. <ApplicationManifest>app.manifest</ApplicationManifest>
  12. <ApplicationIcon>Icon.ico</ApplicationIcon>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <Compile Include="..\..\SampleCode\Game.cs" Link="Game.cs" />
  16. <Compile Include="..\..\SampleCode\ScreenFactory.cs" Link="ScreenFactory.cs" />
  17. <Compile Include="..\..\SampleCode\Screens\BackgroundScreen.cs" Link="Screens\BackgroundScreen.cs" />
  18. <Compile Include="..\..\SampleCode\Screens\Button.cs" Link="Screens\Button.cs" />
  19. <Compile Include="..\..\SampleCode\Screens\GameplayScreen.cs" Link="Screens\GameplayScreen.cs" />
  20. <Compile Include="..\..\SampleCode\Screens\LoadingScreen.cs" Link="Screens\LoadingScreen.cs" />
  21. <Compile Include="..\..\SampleCode\Screens\MainMenuScreen.cs" Link="Screens\MainMenuScreen.cs" />
  22. <Compile Include="..\..\SampleCode\Screens\MenuEntry.cs" Link="Screens\MenuEntry.cs" />
  23. <Compile Include="..\..\SampleCode\Screens\MenuScreen.cs" Link="Screens\MenuScreen.cs" />
  24. <Compile Include="..\..\SampleCode\Screens\MessageBoxScreen.cs" Link="Screens\MessageBoxScreen.cs" />
  25. <Compile Include="..\..\SampleCode\Screens\OptionsMenuScreen.cs" Link="Screens\OptionsMenuScreen.cs" />
  26. <Compile Include="..\..\SampleCode\Screens\PauseMenuScreen.cs" Link="Screens\PauseMenuScreen.cs" />
  27. <Compile Include="..\..\SampleCode\Screens\PhoneMainMenuScreen.cs" Link="Screens\PhoneMainMenuScreen.cs" />
  28. <Compile Include="..\..\SampleCode\Screens\PhoneMenuScreen.cs" Link="Screens\PhoneMenuScreen.cs" />
  29. <Compile Include="..\..\SampleCode\Screens\PhonePauseScreen.cs" Link="Screens\PhonePauseScreen.cs" />
  30. <Compile Include="..\..\SampleCode\Screens\PlayerIndexEventArgs.cs" Link="Screens\PlayerIndexEventArgs.cs" />
  31. </ItemGroup>
  32. <ItemGroup>
  33. <MonoGameContentReference Include="..\..\ContentProject\Content\Content.mgcb" Link="Content\Content.mgcb" />
  34. </ItemGroup>
  35. <ItemGroup>
  36. <PackageReference Include="MonoGame.Framework.WindowsDX" Version="3.8.1.303" />
  37. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.1.303" />
  38. </ItemGroup>
  39. <Target Name="RestoreDotnetTools" BeforeTargets="Restore">
  40. <Message Text="Restoring dotnet tools" Importance="High" />
  41. <Exec Command="dotnet tool restore" />
  42. </Target>
  43. <Import Project="..\..\GameStateManagement\GameStateManagement.projitems" Label="Shared" />
  44. </Project>