Ryujinx.Headless.SDL2.csproj 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.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. </PropertyGroup>
  10. <ItemGroup>
  11. <PackageReference Include="OpenTK.Core" Version="4.7.2" />
  12. <PackageReference Include="Ryujinx.Graphics.Nvdec.Dependencies" Version="5.0.1-build10" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <ProjectReference Include="..\Ryujinx.Graphics.Vulkan\Ryujinx.Graphics.Vulkan.csproj" />
  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. <ContentWithTargetPath Include="..\distribution\legal\THIRDPARTY.md">
  30. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  31. <TargetPath>THIRDPARTY.md</TargetPath>
  32. </ContentWithTargetPath>
  33. </ItemGroup>
  34. <!-- Due to .net core 3.1 embedded resource loading -->
  35. <PropertyGroup>
  36. <EmbeddedResourceUseDependentUponConvention>false</EmbeddedResourceUseDependentUponConvention>
  37. <ApplicationIcon>..\Ryujinx\Ryujinx.ico</ApplicationIcon>
  38. </PropertyGroup>
  39. <PropertyGroup Condition="'$(RuntimeIdentifier)' != ''">
  40. <PublishSingleFile>true</PublishSingleFile>
  41. <PublishTrimmed>true</PublishTrimmed>
  42. </PropertyGroup>
  43. </Project>