Input.DesktopGL.csproj 771 B

12345678910111213141516171819
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <OutputType>WinExe</OutputType>
  5. <AssemblyName>MonoGame.Samples.Input.DesktopGL</AssemblyName>
  6. <RootNamespace>MonoGame.Samples.Input.DesktopGL</RootNamespace>
  7. </PropertyGroup>
  8. <ItemGroup>
  9. <ProjectReference Include="..\..\Core\Input.Core.csproj" />
  10. <PackageReference Include="MonoGame.Framework.DesktopGL" Version="3.8.*" />
  11. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  15. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  16. </Content>
  17. </ItemGroup>
  18. </Project>