Ryujinx.Audio.csproj 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>netcoreapp3.1</TargetFramework>
  4. <LangVersion>8.0</LangVersion>
  5. <RuntimeIdentifiers>win-x64;osx-x64;linux-x64</RuntimeIdentifiers>
  6. <Configurations>Debug;Release;Profile Debug;Profile Release</Configurations>
  7. </PropertyGroup>
  8. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  9. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Debug|AnyCPU'">
  12. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  13. <DefineConstants>TRACE;USE_DEBUGGING</DefineConstants>
  14. <Optimize>false</Optimize>
  15. </PropertyGroup>
  16. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  17. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  18. </PropertyGroup>
  19. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Release|AnyCPU'">
  20. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  21. <DefineConstants>TRACE;USE_DEBUGGING</DefineConstants>
  22. <Optimize>true</Optimize>
  23. </PropertyGroup>
  24. <ItemGroup>
  25. <PackageReference Include="OpenTK.NetStandard" Version="1.0.5.12" />
  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>