Ryujinx.Audio.Renderer.csproj 848 B

1234567891011121314151617181920212223242526
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp3.1</TargetFramework>
  4. <RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
  5. <Configurations>Debug;Release</Configurations>
  6. </PropertyGroup>
  7. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  8. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  9. </PropertyGroup>
  10. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  11. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.6.0" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
  18. <ProjectReference Include="..\Ryujinx.Cpu\Ryujinx.Cpu.csproj" />
  19. </ItemGroup>
  20. </Project>