/ src / ARMeilleure / ARMeilleure.csproj
ARMeilleure.csproj
 1  <Project Sdk="Microsoft.NET.Sdk">
 2  
 3    <PropertyGroup>
 4      <TargetFramework>net8.0</TargetFramework>
 5      <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
 6    </PropertyGroup>
 7  
 8    <ItemGroup>
 9      <ProjectReference Include="..\Ryujinx.Common\Ryujinx.Common.csproj" />
10      <ProjectReference Include="..\Ryujinx.Memory\Ryujinx.Memory.csproj" />
11    </ItemGroup>
12  
13    <ItemGroup>
14      <ContentWithTargetPath Include="Native\libs\libarmeilleure-jitsupport.dylib" Condition="'$(RuntimeIdentifier)' == '' OR '$(RuntimeIdentifier)' == 'osx-arm64'">
15        <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
16        <TargetPath>libarmeilleure-jitsupport.dylib</TargetPath>
17      </ContentWithTargetPath>
18    </ItemGroup>
19  
20    <ItemGroup>
21      <AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
22        <_Parameter1>Ryujinx.Tests</_Parameter1>
23      </AssemblyAttribute>
24    </ItemGroup>
25  
26  </Project>