SpriteFont.Windows.csproj 779 B

1234567891011121314151617181920
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <RootNamespace>SpriteFont.Windows</RootNamespace>
  6. <AssemblyName>SpriteFont.Windows</AssemblyName>
  7. <UseWindowsForms>true</UseWindowsForms>
  8. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <ProjectReference Include="..\..\Core\SpriteFont.Core.csproj" />
  12. <PackageReference Include="MonoGame.Framework.WindowsDX" Version="3.8.*" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <None Include="..\..\Core\Content\**\*.xnb">
  16. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  17. <Link>Content\%(RecursiveDir)%(Filename)%(Extension)</Link>
  18. </None>
  19. </ItemGroup>
  20. </Project>