Skip to content

Commit 3660563

Browse files
authored
Remove unnecessary package references (#1210)
1 parent b7a5a60 commit 3660563

File tree

6 files changed

+5
-18
lines changed

6 files changed

+5
-18
lines changed

build/dependencies.props

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
<Project>
22
<PropertyGroup>
33
<AspNetCoreVersion>2.0.0-*</AspNetCoreVersion>
4-
<CoreFxVersion>4.3.0</CoreFxVersion>
54
<IdentityModelActiveDirectoryVersion>3.13.8</IdentityModelActiveDirectoryVersion>
65
<IdentityModelOpenIdVersion>2.1.3</IdentityModelOpenIdVersion>
76
<InternalAspNetCoreSdkVersion>2.1.0-*</InternalAspNetCoreSdkVersion>
87
<JsonNetVersion>10.0.1</JsonNetVersion>
98
<NETStandardImplicitPackageVersion>$(BundledNETStandardPackageVersion)</NETStandardImplicitPackageVersion>
10-
<OwinVersion>3.0.1</OwinVersion>
119
<TestSdkVersion>15.0.0</TestSdkVersion>
1210
<XunitVersion>2.2.0</XunitVersion>
1311
</PropertyGroup>

src/Microsoft.AspNetCore.Authentication.JwtBearer/Microsoft.AspNetCore.Authentication.JwtBearer.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<Import Project="..\..\build\common.props" />
33
<PropertyGroup>
44
<Description>ASP.NET Core middleware that enables an application to receive an OpenID Connect bearer token.</Description>
@@ -11,7 +11,6 @@
1111
<ItemGroup>
1212
<ProjectReference Include="..\Microsoft.AspNetCore.Authentication\Microsoft.AspNetCore.Authentication.csproj" />
1313
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="$(IdentityModelOpenIdVersion)" />
14-
<PackageReference Include="System.Security.Claims" Version="$(CoreFxVersion)" />
1514
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="$(AspNetCoreVersion)" />
1615
<PackageReference Include="Microsoft.Extensions.TaskCache.Sources" Version="$(AspNetCoreVersion)" PrivateAssets="All" />
1716
</ItemGroup>

src/Microsoft.AspNetCore.Authentication.OAuth/Microsoft.AspNetCore.Authentication.OAuth.csproj

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<Import Project="..\..\build\common.props" />
44

@@ -17,8 +17,4 @@
1717
<PackageReference Include="Newtonsoft.Json" Version="$(JsonNetVersion)" />
1818
</ItemGroup>
1919

20-
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">
21-
<PackageReference Include="System.Runtime.Serialization.Primitives" Version="$(CoreFxVersion)" />
22-
</ItemGroup>
23-
2420
</Project>

src/Microsoft.AspNetCore.Authentication.OpenIdConnect/Microsoft.AspNetCore.Authentication.OpenIdConnect.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<Import Project="..\..\build\common.props" />
33
<PropertyGroup>
44
<Description>ASP.NET Core middleware that enables an application to support the OpenID Connect authentication workflow.</Description>
@@ -13,6 +13,5 @@
1313
<PackageReference Include="Microsoft.Extensions.TaskCache.Sources" Version="$(AspNetCoreVersion)" PrivateAssets="All" />
1414
<PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="$(IdentityModelOpenIdVersion)" />
1515
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="$(AspNetCoreVersion)" />
16-
<PackageReference Include="System.Security.Claims" Version="$(CoreFxVersion)" />
1716
</ItemGroup>
1817
</Project>

src/Microsoft.AspNetCore.Authorization/Microsoft.AspNetCore.Authorization.csproj

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<Import Project="..\..\build\common.props" />
44

@@ -19,8 +19,4 @@ Microsoft.AspNetCore.Authorization.AuthorizeAttribute</Description>
1919
<PackageReference Include="Microsoft.Extensions.TaskCache.Sources" Version="$(AspNetCoreVersion)" PrivateAssets="All" />
2020
</ItemGroup>
2121

22-
<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">
23-
<PackageReference Include="System.Security.Claims" Version="$(CoreFxVersion)" />
24-
</ItemGroup>
25-
2622
</Project>

test/Microsoft.AspNetCore.CookiePolicy.Test/Microsoft.AspNetCore.CookiePolicy.Test.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<Import Project="..\..\build\common.props" />
44
<PropertyGroup>
@@ -13,7 +13,6 @@
1313
<PackageReference Include="xunit.runner.visualstudio" Version="$(XunitVersion)" />
1414
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="$(AspNetCoreVersion)" />
1515
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="$(AspNetCoreVersion)" />
16-
<PackageReference Include="System.Security.Claims" Version="$(CoreFxVersion)" />
1716
<PackageReference Include="xunit" Version="$(XunitVersion)" />
1817
</ItemGroup>
1918
<ItemGroup>

0 commit comments

Comments
 (0)