SpriteEffects.Windows.csproj 781 B

1234567891011121314151617181920
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <RootNamespace>SpriteEffects.Windows</RootNamespace>
  6. <UseWindowsForms>true</UseWindowsForms>
  7. <Nullable>enable</Nullable>
  8. <ApplicationManifest>app.manifest</ApplicationManifest>
  9. <MonoGamePlatform>Windows</MonoGamePlatform>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <ProjectReference Include="..\..\Core\SpriteEffects.Core.csproj" />
  13. <PackageReference Include="MonoGame.Framework.WindowsDX" Version="3.8.*" />
  14. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <MonoGameContentReference Include="..\..\Core\Content\Content.mgcb" />
  18. </ItemGroup>
  19. </Project>