|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFramework>netstandard2.0</TargetFramework> |
| 4 | + <TargetFrameworks>netcoreapp3.1;netcoreapp3.0;netstandard2.0;net461</TargetFrameworks> |
| 5 | + <Version>3.1.5</Version> |
| 6 | + <RepositoryUrl>https://github.com/mihirdilip/aspnetcore-authentication-basic/tree/3.1.5</RepositoryUrl> |
| 7 | + <PackageProjectUrl>https://github.com/mihirdilip/aspnetcore-authentication-basic/tree/3.1.5</PackageProjectUrl> |
| 8 | + <PackageTags>aspnetcore, security, authentication, microsoft, microsoft.aspnetcore.authentication, microsoft-aspnetcore-authentication, microsoft.aspnetcore.authentication.basic, microsoft-aspnetcore-authentication-basic, asp-net-core, netstandard, netstandard20, basic-authentication, basicauthentication, dotnetcore, dotnetcore3.1, asp-net-core-basic-authentication, aspnetcore-basic-authentication, asp-net-core-authentication, aspnetcore-authentication, asp, aspnet, basic, authentication-scheme</PackageTags> |
| 9 | + <PackageReleaseNotes></PackageReleaseNotes> |
| 10 | + <Description>Easy to use and very light weight Microsoft style Basic Scheme Authentication implementation for ASP.NET Core.</Description> |
5 | 11 | <Authors>Mihir Dilip</Authors> |
6 | 12 | <Company>Mihir Dilip</Company> |
7 | | - <Description>Easy to use and very light weight Microsoft style Basic Scheme Authentication Implementation for ASP.NET Core.</Description> |
8 | | - <RepositoryUrl>https://github.com/mihirdilip/aspnetcore-authentication-basic/tree/2.2.0</RepositoryUrl> |
| 13 | + <Copyright>Copyright (c) 2020 Mihir Dilip</Copyright> |
9 | 14 | <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
10 | | - <PackageProjectUrl>https://github.com/mihirdilip/aspnetcore-authentication-basic/tree/2.2.0</PackageProjectUrl> |
11 | | - <Version>2.2.0</Version> |
12 | | - <Copyright>Copyright (c) 2019 Mihir Dilip</Copyright> |
13 | | - <PackageLicenseUrl></PackageLicenseUrl> |
14 | | - <RepositoryType>GitHub</RepositoryType> |
| 15 | + <RepositoryType>git</RepositoryType> |
15 | 16 | <PackageIconUrl /> |
16 | | - <PackageTags>aspnetcore, security, authentication, microsoft, microsoft.aspnetcore.authentication, microsoft-aspnetcore-authentication, microsoft.aspnetcore.authentication.basic, microsoft-aspnetcore-authentication-basic, asp-net-core, netstandard, netstandard20, basic-authentication, basicauthentication, dotnetcore, asp-net-core-basic-authentication, aspnetcore-basic-authentication, asp-net-core-authentication, aspnetcore-authentication, asp, aspnet, basic, authentication-scheme</PackageTags> |
17 | 17 | <NeutralLanguage /> |
18 | 18 | <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> |
19 | | - <PackageReleaseNotes></PackageReleaseNotes> |
20 | 19 | <PackageLicenseFile>LICENSE.txt</PackageLicenseFile> |
21 | 20 | <RootNamespace>AspNetCore.Authentication.Basic</RootNamespace> |
22 | 21 | <PackageId>AspNetCore.Authentication.Basic</PackageId> |
23 | 22 | <Product>AspNetCore.Authentication.Basic</Product> |
24 | 23 | </PropertyGroup> |
25 | 24 |
|
26 | 25 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
27 | | - <DocumentationFile>bin\Release\netstandard2.0\Mihir.AspNetCore.Authentication.Basic.xml</DocumentationFile> |
| 26 | + <DocumentationFile>bin\Release\$(TargetFramework)\AspNetCore.Authentication.Basic.xml</DocumentationFile> |
28 | 27 | </PropertyGroup> |
29 | 28 |
|
30 | | - <ItemGroup> |
| 29 | + <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0' Or '$(TargetFramework)' == 'net461'"> |
31 | 30 | <PackageReference Include="Microsoft.AspNetCore.Authentication" Version="2.2.0" /> |
32 | 31 | </ItemGroup> |
33 | 32 |
|
| 33 | + <ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0' Or '$(TargetFramework)' == 'netcoreapp3.1'"> |
| 34 | + <FrameworkReference Include="Microsoft.AspNetCore.App" /> |
| 35 | + </ItemGroup> |
| 36 | + |
34 | 37 | <ItemGroup> |
35 | 38 | <None Include="..\..\LICENSE.txt"> |
36 | 39 | <Pack>True</Pack> |
|
0 commit comments