| 1234567891011121314151617181920212223242526 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <DefaultItemExcludes>$(DefaultItemExcludes);._*</DefaultItemExcludes>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
- <ProjectReference Include="..\Ryujinx.Memory\Ryujinx.Memory.csproj" />
- </ItemGroup>
- <ItemGroup>
- <ContentWithTargetPath Include="Native\libs\libarmeilleure-jitsupport.dylib" Condition="'$(RuntimeIdentifier)' == '' OR '$(RuntimeIdentifier)' == 'osx-arm64'">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- <TargetPath>libarmeilleure-jitsupport.dylib</TargetPath>
- </ContentWithTargetPath>
- </ItemGroup>
- <ItemGroup>
- <AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
- <_Parameter1>Ryujinx.Tests</_Parameter1>
- </AssemblyAttribute>
- </ItemGroup>
- </Project>
|