Ryujinx.Audio.Backends.csproj 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net5.0</TargetFramework>
  4. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  5. </PropertyGroup>
  6. <ItemGroup>
  7. <PackageReference Include="OpenTK.NetStandard" Version="1.0.5.32" />
  8. </ItemGroup>
  9. <ItemGroup>
  10. <ProjectReference Include="..\Ryujinx.Audio\Ryujinx.Audio.csproj" />
  11. <ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
  12. </ItemGroup>
  13. <ItemGroup>
  14. <ContentWithTargetPath Include="SoundIo\Native\libsoundio\libs\libsoundio.dll">
  15. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  16. <TargetPath>libsoundio.dll</TargetPath>
  17. </ContentWithTargetPath>
  18. <ContentWithTargetPath Include="SoundIo\Native\libsoundio\libs\libsoundio.dylib">
  19. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  20. <TargetPath>libsoundio.dylib</TargetPath>
  21. </ContentWithTargetPath>
  22. <ContentWithTargetPath Include="SoundIo\Native\libsoundio\libs\libsoundio.so">
  23. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  24. <TargetPath>libsoundio.so</TargetPath>
  25. </ContentWithTargetPath>
  26. </ItemGroup>
  27. </Project>