Ryujinx.Headless.SDL2.csproj 2.3 KB

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