Skip to content
This repository was archived by the owner on Oct 17, 2018. It is now read-only.

Commit 89a63f5

Browse files
author
Nate McMaster
committed
Downgrade to stable packages
1 parent a2a3d35 commit 89a63f5

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

build/common.props

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<Project>
2+
<Import Project="dependencies.props" />
23
<Import Project="..\version.props" />
34

45
<PropertyGroup>
@@ -8,8 +9,6 @@
89
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)Key.snk</AssemblyOriginatorKeyFile>
910
<SignAssembly>true</SignAssembly>
1011
<PublicSign Condition="'$(OS)' != 'Windows_NT'">true</PublicSign>
11-
<NetCoreAppImplicitPackageVersion>1.2.0-*</NetCoreAppImplicitPackageVersion>
12-
<NetStandardImplicitPackageVersion>1.6.2-*</NetStandardImplicitPackageVersion>
1312
<VersionSuffix Condition="'$(VersionSuffix)'!='' AND '$(BuildNumber)' != ''">$(VersionSuffix)-$(BuildNumber)</VersionSuffix>
1413
</PropertyGroup>
1514

build/dependencies.props

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<Project>
2+
<PropertyGroup>
3+
<NetStandardImplicitPackageVersion>1.6.1</NetStandardImplicitPackageVersion>
4+
<CoreFxVersion>4.3.0</CoreFxVersion>
5+
</PropertyGroup>
6+
</Project>

src/Microsoft.AspNetCore.DataProtection.Abstractions/Microsoft.AspNetCore.DataProtection.Abstractions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Microsoft.AspNetCore.DataProtection.IDataProtector</Description>
2222
</ItemGroup>
2323

2424
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">
25-
<PackageReference Include="System.ComponentModel" Version="4.4.0-*" />
25+
<PackageReference Include="System.ComponentModel" Version="$(CoreFxVersion)" />
2626
</ItemGroup>
2727

2828
</Project>

src/Microsoft.AspNetCore.DataProtection/Microsoft.AspNetCore.DataProtection.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
</ItemGroup>
3232

3333
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">
34-
<PackageReference Include="Microsoft.Win32.Registry" Version="4.4.0-*" />
35-
<PackageReference Include="System.Security.Claims" Version="4.4.0-*" />
36-
<PackageReference Include="System.Security.Principal.Windows" Version="4.4.0-*" />
34+
<PackageReference Include="Microsoft.Win32.Registry" Version="$(CoreFxVersion)" />
35+
<PackageReference Include="System.Security.Claims" Version="$(CoreFxVersion)" />
36+
<PackageReference Include="System.Security.Principal.Windows" Version="$(CoreFxVersion)" />
3737
</ItemGroup>
3838

3939
</Project>

0 commit comments

Comments
 (0)