Skip to content

Commit c4ebbf5

Browse files
author
Nate McMaster
committed
Ensure tools build against Microsoft.NETCore.App 2.0.0
1 parent 02233c8 commit c4ebbf5

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

build/dependencies.props

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<!-- This one is OK for console tools that bundle their own version of JSON.NET -->
66
<JsonNetVersion>10.0.1</JsonNetVersion>
77
<MicrosoftDotNetPlatformAbstractionsVersion>2.0.0</MicrosoftDotNetPlatformAbstractionsVersion>
8+
<MicrosoftNETCoreApp20PackageVersion>2.0.0</MicrosoftNETCoreApp20PackageVersion>
89
<MonoCecilVersion>0.10.0-beta6</MonoCecilVersion>
910
<MoqVersion>4.7.99</MoqVersion>
1011
<NuGetPackagesVersion>4.3.0</NuGetPackagesVersion>

modules/NuGetPackageVerifier/console/NuGetPackageVerifier.Console.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<AssemblyName>NuGetPackageVerifier</AssemblyName>
77
<RootNamespace>NuGetPackageVerifier</RootNamespace>
88
<OutputType>exe</OutputType>
9+
<RuntimeFrameworkVersion>$(MicrosoftNETCoreApp20PackageVersion)</RuntimeFrameworkVersion>
910
</PropertyGroup>
1011

1112
<ItemGroup>

src/ApiCheck.Console/ApiCheck.Console.csproj

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<OutputType>exe</OutputType>
99
<IncludeSymbols>false</IncludeSymbols>
1010
<IncludeSource>false</IncludeSource>
11+
<RuntimeFrameworkVersion Condition="'$(TargetFramework)' == 'netcoreapp2.0'">$(MicrosoftNETCoreApp20PackageVersion)</RuntimeFrameworkVersion>
1112
</PropertyGroup>
1213

1314
<!-- packaging settings-->

0 commit comments

Comments
 (0)