2018-08-10 11:27:15 -06:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
2018-02-15 17:04:38 -07:00
|
|
|
<PropertyGroup>
|
2018-05-11 17:10:27 -06:00
|
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
2018-06-30 09:43:04 -06:00
|
|
|
<RuntimeIdentifiers>win10-x64;osx-x64;linux-x64</RuntimeIdentifiers>
|
2018-04-18 14:22:45 -06:00
|
|
|
<OutputType>Exe</OutputType>
|
2018-02-15 17:04:38 -07:00
|
|
|
<IsPackable>false</IsPackable>
|
2018-09-01 08:24:05 -06:00
|
|
|
|
|
|
|
<TargetOS Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))' == 'true'">windows</TargetOS>
|
|
|
|
<TargetOS Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' == 'true'">osx</TargetOS>
|
|
|
|
<TargetOS Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))' == 'true'">linux</TargetOS>
|
2019-04-25 22:53:10 -06:00
|
|
|
<Configurations>Debug;Release;Profile Debug;Profile Release</Configurations>
|
2018-02-15 17:04:38 -07:00
|
|
|
</PropertyGroup>
|
2018-08-10 11:27:15 -06:00
|
|
|
|
2018-02-15 17:04:38 -07:00
|
|
|
<PropertyGroup>
|
|
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
|
|
</PropertyGroup>
|
2019-04-25 22:53:10 -06:00
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Release|AnyCPU'">
|
|
|
|
<DefineConstants>TRACE;USE_PROFILING</DefineConstants>
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Profile Debug|AnyCPU'">
|
|
|
|
<DefineConstants>TRACE;USE_PROFILING</DefineConstants>
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
</PropertyGroup>
|
2018-08-10 11:27:15 -06:00
|
|
|
|
2018-02-15 17:04:38 -07:00
|
|
|
<ItemGroup>
|
2019-03-13 02:23:52 -06:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.0.1" />
|
2018-10-23 08:12:45 -06:00
|
|
|
<PackageReference Include="NUnit" Version="3.11.0" />
|
2019-03-13 02:23:52 -06:00
|
|
|
<PackageReference Include="NUnit3TestAdapter" Version="3.13.0" />
|
2018-05-11 17:10:27 -06:00
|
|
|
<PackageReference Include="System.Runtime.Intrinsics.Experimental" Version="4.5.0-rc1" />
|
2018-02-15 17:04:38 -07:00
|
|
|
</ItemGroup>
|
2018-08-10 11:27:15 -06:00
|
|
|
|
2018-02-15 17:04:38 -07:00
|
|
|
<ItemGroup>
|
2018-02-20 13:19:00 -07:00
|
|
|
<ProjectReference Include="..\ChocolArm64\ChocolArm64.csproj" />
|
2018-09-01 08:24:05 -06:00
|
|
|
<ProjectReference Include="..\Ryujinx.Tests.Unicorn\Ryujinx.Tests.Unicorn.csproj" />
|
2018-02-15 17:04:38 -07:00
|
|
|
</ItemGroup>
|
2018-08-10 11:27:15 -06:00
|
|
|
|
2018-09-01 08:24:05 -06:00
|
|
|
<Target Name="CopyUnicorn" AfterTargets="Build">
|
|
|
|
<Copy SourceFiles="..\Ryujinx.Tests.Unicorn\libs\$(TargetOS)\unicorn.dll" DestinationFolder="$(OutputPath)" ContinueOnError="true" />
|
|
|
|
<Copy SourceFiles="..\Ryujinx.Tests.Unicorn\libs\$(TargetOS)\libunicorn.dylib" DestinationFolder="$(OutputPath)" ContinueOnError="true" />
|
|
|
|
<Copy SourceFiles="..\Ryujinx.Tests.Unicorn\libs\$(TargetOS)\libunicorn.so" DestinationFolder="$(OutputPath)" ContinueOnError="true" />
|
|
|
|
</Target>
|
|
|
|
|
2018-02-15 17:04:38 -07:00
|
|
|
</Project>
|