2019-10-10 00:52:42 -04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2021-01-21 13:45:16 -05:00
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
2019-10-10 00:52:42 -04:00
|
|
|
<OutputType>Exe</OutputType>
|
2019-11-13 11:26:06 -05:00
|
|
|
<RuntimeIdentifiers>win-x64;win-x86;linux-x64;linux-arm64;linux-arm;osx-x64</RuntimeIdentifiers>
|
2019-10-10 00:52:42 -04:00
|
|
|
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
|
|
|
|
|
<AssetTargetFallback>portable-net45+win8</AssetTargetFallback>
|
|
|
|
|
<NoWarn>NU1701;NU1603</NoWarn>
|
|
|
|
|
<Version>$(Version)</Version>
|
2019-10-24 16:52:29 -04:00
|
|
|
<TieredCompilationQuickJit>true</TieredCompilationQuickJit>
|
2019-11-13 11:26:06 -05:00
|
|
|
<PublishReadyToRun>true</PublishReadyToRun>
|
2019-10-10 00:52:42 -04:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\Sdk\Sdk.csproj" />
|
|
|
|
|
<ProjectReference Include="..\Runner.Sdk\Runner.Sdk.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="System.Runtime.Loader" Version="4.3.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
|
|
|
|
|
<DebugType>portable</DebugType>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|