From cee712105850ac3385cd0091a923438167433f9f Mon Sep 17 00:00:00 2001 From: TSR Berry <20988865+TSRBerry@users.noreply.github.com> Date: Sat, 8 Apr 2023 01:22:00 +0200 Subject: Move solution and projects to src --- .../Ryujinx.Audio.Backends.SoundIo.csproj | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/Ryujinx.Audio.Backends.SoundIo/Ryujinx.Audio.Backends.SoundIo.csproj (limited to 'src/Ryujinx.Audio.Backends.SoundIo/Ryujinx.Audio.Backends.SoundIo.csproj') diff --git a/src/Ryujinx.Audio.Backends.SoundIo/Ryujinx.Audio.Backends.SoundIo.csproj b/src/Ryujinx.Audio.Backends.SoundIo/Ryujinx.Audio.Backends.SoundIo.csproj new file mode 100644 index 00000000..9f242dbe --- /dev/null +++ b/src/Ryujinx.Audio.Backends.SoundIo/Ryujinx.Audio.Backends.SoundIo.csproj @@ -0,0 +1,28 @@ +<Project Sdk="Microsoft.NET.Sdk"> + + <PropertyGroup> + <TargetFramework>net7.0</TargetFramework> + <AllowUnsafeBlocks>true</AllowUnsafeBlocks> + <RuntimeIdentifiers>win10-x64;linux-x64;osx-x64</RuntimeIdentifiers> + </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> + <ContentWithTargetPath Include="Native\libsoundio\libs\libsoundio.dylib" Condition="'$(RuntimeIdentifier)' != 'linux-x64' AND '$(RuntimeIdentifier)' != 'win10-x64'"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + <TargetPath>libsoundio.dylib</TargetPath> + </ContentWithTargetPath> + <ContentWithTargetPath Include="Native\libsoundio\libs\libsoundio.so" Condition="'$(RuntimeIdentifier)' != 'win10-x64' AND '$(RuntimeIdentifier)' != 'osx-x64'"> + <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> + <TargetPath>libsoundio.so</TargetPath> + </ContentWithTargetPath> + </ItemGroup> + +</Project> -- cgit v1.2.3-70-g09d2