MultiTouch.Windows.csproj 931 B

12345678910111213141516171819202122
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>WinExe</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <UseWindowsForms>false</UseWindowsForms>
  6. <RootNamespace>Microsoft.Xna.Samples.MultiTouch</RootNamespace>
  7. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <ProjectReference Include="..\..\Core\MultiTouch.Core.csproj" />
  11. <PackageReference Include="MonoGame.Framework.WindowsDX" Version="3.8.*" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <Content Include="..\..\..\CompiledContent\Windows\Content\Textures\circle.xnb" Link="Content\circle.xnb">
  15. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  16. </Content>
  17. <Content Include="..\..\..\CompiledContent\Windows\Content\Textures\sqbrush.xnb" Link="Content\sqbrush.xnb">
  18. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  19. </Content>
  20. </ItemGroup>
  21. </Project>