Primitives.Windows.csproj 1.2 KB

123456789101112131415161718192021222324252627282930
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <UseWindowsForms>true</UseWindowsForms>
  6. <AssemblyName>Primitives.Windows</AssemblyName>
  7. <RootNamespace>PrimitivesSample</RootNamespace>
  8. <ApplicationIcon>..\..\Core\Content\Game.ico</ApplicationIcon>
  9. <AssemblyTitle>MonoGame.Samples.Primitives.Windows</AssemblyTitle>
  10. <AssemblyDescription></AssemblyDescription>
  11. <AssemblyConfiguration></AssemblyConfiguration>
  12. <AssemblyCompany>Savage Software Solutions Ltd.</AssemblyCompany>
  13. <AssemblyProduct></AssemblyProduct>
  14. <AssemblyCopyright>Savage Software Solutions Ltd.</AssemblyCopyright>
  15. <AssemblyTrademark></AssemblyTrademark>
  16. <AssemblyCulture></AssemblyCulture>
  17. <AssemblyVersion>1.0</AssemblyVersion>
  18. </PropertyGroup>
  19. <ItemGroup>
  20. <PackageReference Include="MonoGame.Framework.WindowsDX" Version="3.8.*" />
  21. <ProjectReference Include="..\..\Core\Primitives.Core.csproj" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  25. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  26. </Content>
  27. </ItemGroup>
  28. </Project>