Ryujinx.Headless.SDL2.csproj 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net7.0</TargetFramework>
  4. <RuntimeIdentifiers>win10-x64;osx-x64;linux-x64</RuntimeIdentifiers>
  5. <OutputType>Exe</OutputType>
  6. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  7. <Version>1.0.0-dirty</Version>
  8. <DefineConstants Condition=" '$(ExtraDefineConstants)' != '' ">$(DefineConstants);$(ExtraDefineConstants)</DefineConstants>
  9. <TieredPGO>true</TieredPGO>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <PackageReference Include="OpenTK.Core" />
  13. <PackageReference Include="Ryujinx.Graphics.Nvdec.Dependencies" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\Ryujinx.Graphics.Vulkan\Ryujinx.Graphics.Vulkan.csproj" />
  17. <ProjectReference Include="..\Ryujinx.Input\Ryujinx.Input.csproj" />
  18. <ProjectReference Include="..\Ryujinx.Input.SDL2\Ryujinx.Input.SDL2.csproj" />
  19. <ProjectReference Include="..\Ryujinx.Audio.Backends.SDL2\Ryujinx.Audio.Backends.SDL2.csproj" />
  20. <ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
  21. <ProjectReference Include="..\Ryujinx.HLE\Ryujinx.HLE.csproj" />
  22. <ProjectReference Include="..\ARMeilleure\ARMeilleure.csproj" />
  23. <ProjectReference Include="..\Ryujinx.Graphics.OpenGL\Ryujinx.Graphics.OpenGL.csproj" />
  24. <ProjectReference Include="..\Ryujinx.Graphics.Gpu\Ryujinx.Graphics.Gpu.csproj" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <PackageReference Include="CommandLineParser" />
  28. </ItemGroup>
  29. <ItemGroup>
  30. <Content Include="..\distribution\legal\THIRDPARTY.md">
  31. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  32. <TargetPath>THIRDPARTY.md</TargetPath>
  33. </Content>
  34. <Content Include="..\LICENSE.txt">
  35. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  36. <TargetPath>LICENSE.txt</TargetPath>
  37. </Content>
  38. </ItemGroup>
  39. <!-- Due to .net core 3.1 embedded resource loading -->
  40. <PropertyGroup>
  41. <EmbeddedResourceUseDependentUponConvention>false</EmbeddedResourceUseDependentUponConvention>
  42. <ApplicationIcon>..\Ryujinx\Ryujinx.ico</ApplicationIcon>
  43. </PropertyGroup>
  44. <PropertyGroup Condition="'$(RuntimeIdentifier)' != ''">
  45. <PublishSingleFile>true</PublishSingleFile>
  46. <PublishTrimmed>true</PublishTrimmed>
  47. <TrimMode>partial</TrimMode>
  48. </PropertyGroup>
  49. </Project>