| 12345678910111213141516171819202122 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>WinExe</OutputType>
- <TargetFramework>net8.0-windows</TargetFramework>
- <UseWindowsForms>false</UseWindowsForms>
- <RootNamespace>Microsoft.Xna.Samples.MultiTouch</RootNamespace>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\..\Core\MultiTouch.Core.csproj" />
- <PackageReference Include="MonoGame.Framework.WindowsDX" Version="3.8.*" />
- </ItemGroup>
- <ItemGroup>
- <Content Include="..\..\..\CompiledContent\Windows\Content\Textures\circle.xnb" Link="Content\circle.xnb">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- <Content Include="..\..\..\CompiledContent\Windows\Content\Textures\sqbrush.xnb" Link="Content\sqbrush.xnb">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </Content>
- </ItemGroup>
- </Project>
|