|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFrameworks>net8.0;net7.0;net6.0;net5.0;netcoreapp3.1;netcoreapp3.0;netstandard2.0;net461</TargetFrameworks> |
5 | | - <Version>8.0.0</Version> |
| 4 | + <TargetFrameworks>net8.0;net8.0;net7.0;net6.0;net5.0;netcoreapp3.1;netcoreapp3.0;netstandard2.0;net461</TargetFrameworks> |
| 5 | + <Version>9.0.0</Version> |
6 | 6 | <RepositoryUrl>https://github.com/mihirdilip/aspnetcore-authentication-basic/tree/$(Version)</RepositoryUrl> |
7 | 7 | <PackageProjectUrl>https://github.com/mihirdilip/aspnetcore-authentication-basic/tree/$(Version)</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, net5, net5.0, net6, net6.0, net7, net7.0, net8, net8.0, asp-net-core-basic-authentication, aspnetcore-basic-authentication, asp-net-core-authentication, aspnetcore-authentication, asp, aspnet, basic, authentication-scheme</PackageTags> |
9 | | - <PackageReleaseNotes>- net8.0 support added |
10 | | -- Sample project for net8.0 added |
11 | | -- BasicSamplesClient.http file added for testing sample projects |
| 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, net5, net5.0, net6, net6.0, net7, net7.0, net8, net8.0, net9, net9.0, asp-net-core-basic-authentication, aspnetcore-basic-authentication, asp-net-core-authentication, aspnetcore-authentication, asp, aspnet, basic, authentication-scheme</PackageTags> |
| 9 | + <PackageReleaseNotes>- net9.0 support added |
| 10 | +- Sample project for net9.0 added |
12 | 11 | - Readme updated |
13 | 12 | </PackageReleaseNotes> |
14 | 13 | <Description>Easy to use and very light weight Microsoft style Basic Scheme Authentication implementation for ASP.NET Core.</Description> |
15 | 14 | <Authors>Mihir Dilip</Authors> |
16 | 15 | <Company>Mihir Dilip</Company> |
17 | | - <Copyright>Copyright (c) 2024 Mihir Dilip</Copyright> |
| 16 | + <Copyright>Copyright (c) 2025 Mihir Dilip</Copyright> |
18 | 17 | <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
19 | 18 | <Title>$(AssemblyName)</Title> |
20 | 19 | <RepositoryType>git</RepositoryType> |
|
30 | 29 | <!--<GenerateCompatibilitySuppressionFile>true</GenerateCompatibilitySuppressionFile>--> |
31 | 30 | </PropertyGroup> |
32 | 31 |
|
33 | | - <PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1' Or '$(TargetFramework)' == 'net5.0'"> |
| 32 | + <PropertyGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1' Or '$(TargetFramework)' == 'net5.0' Or '$(TargetFramework)' == 'net7.0'"> |
34 | 33 | <CheckEolTargetFramework>false</CheckEolTargetFramework> |
35 | 34 | </PropertyGroup> |
36 | 35 |
|
|
71 | 70 | <PackageReference Include="Microsoft.AspNetCore.Authentication" Version="2.2.0" /> |
72 | 71 | </ItemGroup> |
73 | 72 |
|
74 | | - <ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0' Or '$(TargetFramework)' == 'netcoreapp3.1' Or '$(TargetFramework)' == 'net5.0' Or '$(TargetFramework)' == 'net6.0' Or '$(TargetFramework)' == 'net7.0' Or '$(TargetFramework)' == 'net8.0'"> |
| 73 | + <ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0' Or '$(TargetFramework)' == 'netcoreapp3.1' Or '$(TargetFramework)' == 'net5.0' Or '$(TargetFramework)' == 'net6.0' Or '$(TargetFramework)' == 'net7.0' Or '$(TargetFramework)' == 'net8.0' Or '$(TargetFramework)' == 'net9.0'"> |
75 | 74 | <FrameworkReference Include="Microsoft.AspNetCore.App" /> |
76 | 75 | </ItemGroup> |
77 | 76 |
|
|
0 commit comments