GameComponents.Windows.csproj 949 B

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