|
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | 4 | <TargetFrameworks>netcoreapp3.1;netcoreapp3.0;netstandard2.0;net461</TargetFrameworks> |
5 | | - <Version>3.1.5</Version> |
| 5 | + <Version>3.1.5-preview.1</Version> |
6 | 6 | <RepositoryUrl>https://github.com/mihirdilip/aspnetcore-authentication-basic/tree/3.1.5</RepositoryUrl> |
7 | 7 | <PackageProjectUrl>https://github.com/mihirdilip/aspnetcore-authentication-basic/tree/3.1.5</PackageProjectUrl> |
8 | 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> |
| 9 | + <PackageReleaseNotes> |
| 10 | + - Multitarget framework support added |
| 11 | + - Source Link support added |
| 12 | + - Strong Name Key support added (breaking change!) |
| 13 | + </PackageReleaseNotes> |
10 | 14 | <Description>Easy to use and very light weight Microsoft style Basic Scheme Authentication implementation for ASP.NET Core.</Description> |
11 | 15 | <Authors>Mihir Dilip</Authors> |
12 | 16 | <Company>Mihir Dilip</Company> |
|
18 | 22 | <PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance> |
19 | 23 | <PackageLicenseFile>LICENSE.txt</PackageLicenseFile> |
20 | 24 | </PropertyGroup> |
21 | | - |
| 25 | + |
| 26 | + <PropertyGroup> |
| 27 | + <!-- Strong Name Key --> |
| 28 | + <SignAssembly>true</SignAssembly> |
| 29 | + <AssemblyOriginatorKeyFile>$(SolutionDir)key.snk</AssemblyOriginatorKeyFile> |
| 30 | + <DelaySign>false</DelaySign> |
| 31 | + </PropertyGroup> |
| 32 | + |
22 | 33 | <PropertyGroup> |
23 | 34 | <!-- Source Link - https://github.com/dotnet/sourcelink --> |
24 | 35 | <PublishRepositoryUrl>true</PublishRepositoryUrl> |
25 | 36 | <EmbedUntrackedSources>true</EmbedUntrackedSources> |
26 | 37 | <IncludeSymbols>true</IncludeSymbols> |
27 | 38 | <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
28 | 39 | <AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder> |
29 | | - <SignAssembly>true</SignAssembly> |
30 | 40 | </PropertyGroup> |
31 | 41 |
|
32 | | - <PropertyGroup> |
33 | | - <!-- Strong Name Key --> |
34 | | - <SignAssembly>true</SignAssembly> |
35 | | - <AssemblyOriginatorKeyFile>$(SolutionDir)key.snk</AssemblyOriginatorKeyFile> |
36 | | - <DelaySign>false</DelaySign> |
37 | | - </PropertyGroup> |
| 42 | + <ItemGroup> |
| 43 | + <!-- Source Link - https://github.com/dotnet/sourcelink --> |
| 44 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" /> |
| 45 | + </ItemGroup> |
38 | 46 |
|
39 | 47 | <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> |
40 | 48 | <DocumentationFile>bin\Release\$(TargetFramework)\AspNetCore.Authentication.Basic.xml</DocumentationFile> |
|
48 | 56 | <FrameworkReference Include="Microsoft.AspNetCore.App" /> |
49 | 57 | </ItemGroup> |
50 | 58 |
|
51 | | - <ItemGroup> |
52 | | - <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" /> |
53 | | - </ItemGroup> |
54 | | - |
55 | 59 | <ItemGroup> |
56 | 60 | <None Include="..\..\LICENSE.txt"> |
57 | 61 | <Pack>True</Pack> |
|
0 commit comments