Skip to content

Commit 626b234

Browse files
committed
Release Notes updated
1 parent 64a6b52 commit 626b234

File tree

1 file changed

+18
-14
lines changed

1 file changed

+18
-14
lines changed

src/AspNetCore.Authentication.Basic/AspNetCore.Authentication.Basic.csproj

Lines changed: 18 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,15 @@
22

33
<PropertyGroup>
44
<TargetFrameworks>netcoreapp3.1;netcoreapp3.0;netstandard2.0;net461</TargetFrameworks>
5-
<Version>3.1.5</Version>
5+
<Version>3.1.5-preview.1</Version>
66
<RepositoryUrl>https://github.com/mihirdilip/aspnetcore-authentication-basic/tree/3.1.5</RepositoryUrl>
77
<PackageProjectUrl>https://github.com/mihirdilip/aspnetcore-authentication-basic/tree/3.1.5</PackageProjectUrl>
88
<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>
1014
<Description>Easy to use and very light weight Microsoft style Basic Scheme Authentication implementation for ASP.NET Core.</Description>
1115
<Authors>Mihir Dilip</Authors>
1216
<Company>Mihir Dilip</Company>
@@ -18,23 +22,27 @@
1822
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
1923
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
2024
</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+
2233
<PropertyGroup>
2334
<!-- Source Link - https://github.com/dotnet/sourcelink -->
2435
<PublishRepositoryUrl>true</PublishRepositoryUrl>
2536
<EmbedUntrackedSources>true</EmbedUntrackedSources>
2637
<IncludeSymbols>true</IncludeSymbols>
2738
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
2839
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
29-
<SignAssembly>true</SignAssembly>
3040
</PropertyGroup>
3141

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>
3846

3947
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
4048
<DocumentationFile>bin\Release\$(TargetFramework)\AspNetCore.Authentication.Basic.xml</DocumentationFile>
@@ -48,10 +56,6 @@
4856
<FrameworkReference Include="Microsoft.AspNetCore.App" />
4957
</ItemGroup>
5058

51-
<ItemGroup>
52-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
53-
</ItemGroup>
54-
5559
<ItemGroup>
5660
<None Include="..\..\LICENSE.txt">
5761
<Pack>True</Pack>

0 commit comments

Comments
 (0)