Files
runner/src/Runner.Sdk/Runner.Sdk.csproj
T

29 lines
1008 B
XML
Raw Normal View History

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>Library</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-10-10 00:52:42 -04:00
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Sdk\Sdk.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Text.Encoding.CodePages" Version="4.4.0" />
<PackageReference Include="Microsoft.Win32.Registry" Version="4.4.0" />
<PackageReference Include="System.Threading.Channels" Version="4.4.0" />
</ItemGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DebugType>portable</DebugType>
</PropertyGroup>
</Project>