Produce Microsoft.AspNetCore.Authorization as a package (#10684)
Produce Microsoft.AspNetCore.Authorization as a package
This commit is contained in:
parent
089fc88644
commit
3f041cee44
|
|
@ -9,7 +9,9 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<!-- These assemblies are available as both a NuGet package and in the shared framework -->
|
<!-- These assemblies are available as both a NuGet package and in the shared framework -->
|
||||||
<AspNetCoreAppReferenceAndPackage Include="Microsoft.AspNetCore.Http.Features" />
|
<AspNetCoreAppReferenceAndPackage Include="Microsoft.AspNetCore.Http.Features" />
|
||||||
|
<AspNetCoreAppReferenceAndPackage Include="Microsoft.AspNetCore.Metadata" />
|
||||||
<AspNetCoreAppReferenceAndPackage Include="Microsoft.AspNetCore.Connections.Abstractions" />
|
<AspNetCoreAppReferenceAndPackage Include="Microsoft.AspNetCore.Connections.Abstractions" />
|
||||||
|
<AspNetCoreAppReferenceAndPackage Include="Microsoft.AspNetCore.Authorization" />
|
||||||
<AspNetCoreAppReferenceAndPackage Include="Microsoft.AspNetCore.Http.Connections.Common" />
|
<AspNetCoreAppReferenceAndPackage Include="Microsoft.AspNetCore.Http.Connections.Common" />
|
||||||
<AspNetCoreAppReferenceAndPackage Include="Microsoft.AspNetCore.SignalR.Protocols.Json" />
|
<AspNetCoreAppReferenceAndPackage Include="Microsoft.AspNetCore.SignalR.Protocols.Json" />
|
||||||
<AspNetCoreAppReferenceAndPackage Include="Microsoft.AspNetCore.SignalR.Common" />
|
<AspNetCoreAppReferenceAndPackage Include="Microsoft.AspNetCore.SignalR.Common" />
|
||||||
|
|
@ -33,7 +35,6 @@
|
||||||
<AspNetCoreAppReference Include="Microsoft.AspNetCore.Http.Abstractions" />
|
<AspNetCoreAppReference Include="Microsoft.AspNetCore.Http.Abstractions" />
|
||||||
<AspNetCoreAppReference Include="Microsoft.AspNetCore.Http.Extensions" />
|
<AspNetCoreAppReference Include="Microsoft.AspNetCore.Http.Extensions" />
|
||||||
<AspNetCoreAppReference Include="Microsoft.AspNetCore.Http" />
|
<AspNetCoreAppReference Include="Microsoft.AspNetCore.Http" />
|
||||||
<AspNetCoreAppReference Include="Microsoft.AspNetCore.Metadata" />
|
|
||||||
<AspNetCoreAppReference Include="Microsoft.AspNetCore.Routing.Abstractions" />
|
<AspNetCoreAppReference Include="Microsoft.AspNetCore.Routing.Abstractions" />
|
||||||
<AspNetCoreAppReference Include="Microsoft.AspNetCore.Routing" />
|
<AspNetCoreAppReference Include="Microsoft.AspNetCore.Routing" />
|
||||||
<AspNetCoreAppReference Include="Microsoft.AspNetCore.WebUtilities" />
|
<AspNetCoreAppReference Include="Microsoft.AspNetCore.WebUtilities" />
|
||||||
|
|
@ -51,7 +52,6 @@
|
||||||
<AspNetCoreAppReference Include="Microsoft.AspNetCore.Authentication.Cookies" />
|
<AspNetCoreAppReference Include="Microsoft.AspNetCore.Authentication.Cookies" />
|
||||||
<AspNetCoreAppReference Include="Microsoft.AspNetCore.Authentication" />
|
<AspNetCoreAppReference Include="Microsoft.AspNetCore.Authentication" />
|
||||||
<AspNetCoreAppReference Include="Microsoft.AspNetCore.Authentication.OAuth" />
|
<AspNetCoreAppReference Include="Microsoft.AspNetCore.Authentication.OAuth" />
|
||||||
<AspNetCoreAppReference Include="Microsoft.AspNetCore.Authorization" />
|
|
||||||
<AspNetCoreAppReference Include="Microsoft.AspNetCore.Authorization.Policy" />
|
<AspNetCoreAppReference Include="Microsoft.AspNetCore.Authorization.Policy" />
|
||||||
<AspNetCoreAppReference Include="Microsoft.AspNetCore.CookiePolicy" />
|
<AspNetCoreAppReference Include="Microsoft.AspNetCore.CookiePolicy" />
|
||||||
<AspNetCoreAppReference Include="Microsoft.AspNetCore.Cors" />
|
<AspNetCoreAppReference Include="Microsoft.AspNetCore.Cors" />
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,7 @@
|
||||||
<Description>ASP.NET Core metadata.</Description>
|
<Description>ASP.NET Core metadata.</Description>
|
||||||
<TargetFramework>netstandard2.0</TargetFramework>
|
<TargetFramework>netstandard2.0</TargetFramework>
|
||||||
<IsAspNetCoreApp>true</IsAspNetCoreApp>
|
<IsAspNetCoreApp>true</IsAspNetCoreApp>
|
||||||
|
<IsShippingPackage>true</IsShippingPackage>
|
||||||
<NoWarn>$(NoWarn);CS1591</NoWarn>
|
<NoWarn>$(NoWarn);CS1591</NoWarn>
|
||||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||||
<PackageTags>aspnetcore</PackageTags>
|
<PackageTags>aspnetcore</PackageTags>
|
||||||
|
|
|
||||||
|
|
@ -7,6 +7,7 @@ Microsoft.AspNetCore.Authorization.AllowAnonymousAttribute
|
||||||
Microsoft.AspNetCore.Authorization.AuthorizeAttribute</Description>
|
Microsoft.AspNetCore.Authorization.AuthorizeAttribute</Description>
|
||||||
<TargetFramework>netstandard2.0</TargetFramework>
|
<TargetFramework>netstandard2.0</TargetFramework>
|
||||||
<IsAspNetCoreApp>true</IsAspNetCoreApp>
|
<IsAspNetCoreApp>true</IsAspNetCoreApp>
|
||||||
|
<IsShippingPackage>true</IsShippingPackage>
|
||||||
<NoWarn>$(NoWarn);CS1591</NoWarn>
|
<NoWarn>$(NoWarn);CS1591</NoWarn>
|
||||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||||
<PackageTags>aspnetcore;authorization</PackageTags>
|
<PackageTags>aspnetcore;authorization</PackageTags>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue