Draw2D.Windows.csproj 978 B

123456789101112131415161718192021222324
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0-windows</TargetFramework>
  4. <RootNamespace>Draw2D.Windows</RootNamespace>
  5. <AssemblyName>Draw2D.Windows</AssemblyName>
  6. <UseWindowsForms>true</UseWindowsForms>
  7. <GenerateAssemblyInfo>true</GenerateAssemblyInfo>
  8. <OutputType>WinExe</OutputType>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <ProjectReference Include="..\..\Core\Draw2D.Core.csproj" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <PackageReference Include="MonoGame.Framework.WindowsDX" Version="3.8.*" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <Content Include="..\..\..\CompiledContent\Windows\Content\Textures\logo.xnb" Link="Content\logo.xnb">
  18. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  19. </Content>
  20. <Content Include="..\..\..\CompiledContent\Windows\Content\Fonts\Arial.xnb" Link="Content\Font.xnb">
  21. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  22. </Content>
  23. </ItemGroup>
  24. </Project>