2021-02-26 01:11:56 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2021-11-28 21:24:17 +01:00
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2021-02-26 01:11:56 +01:00
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2022-06-01 02:01:16 +02:00
|
|
|
<RuntimeIdentifiers>win10-x64;linux-x64;osx-x64</RuntimeIdentifiers>
|
2021-02-26 01:11:56 +01:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Ryujinx.Audio\Ryujinx.Audio.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ContentWithTargetPath Include="Native\libsoundio\libs\libsoundio.dll" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
<TargetPath>libsoundio.dll</TargetPath>
|
|
|
|
</ContentWithTargetPath>
|
2022-06-01 02:01:16 +02:00
|
|
|
<ContentWithTargetPath Include="Native\libsoundio\libs\libsoundio.dylib" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'win10-x64'">
|
2021-02-26 01:11:56 +01:00
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
<TargetPath>libsoundio.dylib</TargetPath>
|
|
|
|
</ContentWithTargetPath>
|
2022-06-01 02:01:16 +02:00
|
|
|
<ContentWithTargetPath Include="Native\libsoundio\libs\libsoundio.so" Condition="'$(RuntimeIdentifier)' != 'win10-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'">
|
2021-02-26 01:11:56 +01:00
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
<TargetPath>libsoundio.so</TargetPath>
|
|
|
|
</ContentWithTargetPath>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|