Ryujinx.Audio.csproj 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp3.0</TargetFramework>
  4. <RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
  5. <Configurations>Debug;Release;Profile Debug;Profile Release</Configurations>
  6. </PropertyGroup>
  7. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  8. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  9. </PropertyGroup>
  10. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Debug|AnyCPU'">
  11. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  12. <DefineConstants>TRACE;USE_PROFILING</DefineConstants>
  13. <Optimize>false</Optimize>
  14. </PropertyGroup>
  15. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  16. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  17. </PropertyGroup>
  18. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Release|AnyCPU'">
  19. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  20. <DefineConstants>TRACE;USE_PROFILING</DefineConstants>
  21. <Optimize>true</Optimize>
  22. </PropertyGroup>
  23. <ItemGroup>
  24. <PackageReference Include="OpenTK.NetStandard" Version="1.0.4" />
  25. <PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="4.6.0" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
  29. </ItemGroup>
  30. <ItemGroup>
  31. <ContentWithTargetPath Include="Native\libsoundio\libs\libsoundio.dll">
  32. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  33. <TargetPath>libsoundio.dll</TargetPath>
  34. </ContentWithTargetPath>
  35. <ContentWithTargetPath Include="Native\libsoundio\libs\libsoundio.dylib">
  36. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  37. <TargetPath>libsoundio.dylib</TargetPath>
  38. </ContentWithTargetPath>
  39. <ContentWithTargetPath Include="Native\libsoundio\libs\libsoundio.so">
  40. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  41. <TargetPath>libsoundio.so</TargetPath>
  42. </ContentWithTargetPath>
  43. </ItemGroup>
  44. </Project>