InputReporter.Windows.csproj 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0-windows</TargetFramework>
  4. <OutputType>WinExe</OutputType>
  5. <RootNamespace>InputReporter</RootNamespace>
  6. <AssemblyName>InputReporter.Windows</AssemblyName>
  7. <ApplicationIcon>..\..\Core\Content\Game.ico</ApplicationIcon>
  8. <UseWindowsForms>false</UseWindowsForms>
  9. <ImplicitUsings>false</ImplicitUsings>
  10. <Nullable>disable</Nullable>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <PackageReference Include="MonoGame.Framework.WindowsDX" Version="3.8.*" />
  14. <PackageReference Include="MonoGame.Content.Builder.Task" Version="3.8.*" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <ProjectReference Include="..\..\Core\InputReporter.Core.csproj" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <Content Include="..\..\Core\Content\**\*.xnb" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  21. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  22. </Content>
  23. <Content Include="..\..\Core\Content\**\*.xml" Link="Content\%(RecursiveDir)%(Filename)%(Extension)">
  24. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  25. </Content>
  26. </ItemGroup>
  27. </Project>