File tree Expand file tree Collapse file tree 8 files changed +43
-15
lines changed
ProblemDetails.MinimalApiSample
ProblemDetails.Mvc.Sample
Authentication.JwtBearer.Google Expand file tree Collapse file tree 8 files changed +43
-15
lines changed Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk.Web" >
22 <PropertyGroup >
3- <TargetFramework >net8 .0</TargetFramework >
3+ <TargetFramework >net9 .0</TargetFramework >
44 <Nullable >enable</Nullable >
55 <ImplicitUsings >enable</ImplicitUsings >
66 <AssemblyName >Hellang.Middleware.ProblemDetails.MinimalApiSample</AssemblyName >
77 <RootNamespace >Hellang.Middleware.ProblemDetails.MinimalApiSample</RootNamespace >
88 </PropertyGroup >
99
1010 <ItemGroup >
11- <PackageReference Include =" Swashbuckle.AspNetCore" Version =" 6.2.3 " />
11+ <PackageReference Include =" Swashbuckle.AspNetCore" Version =" 7.0.0 " />
1212 </ItemGroup >
1313
1414 <ItemGroup >
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk.Web" >
22
33 <PropertyGroup >
4- <TargetFramework >net8 .0</TargetFramework >
4+ <TargetFramework >net9 .0</TargetFramework >
55 <Nullable >enable</Nullable >
66 <ImplicitUsings >enable</ImplicitUsings >
77 </PropertyGroup >
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk.Web" >
22
33 <PropertyGroup >
4- <TargetFramework >net8 .0</TargetFramework >
4+ <TargetFramework >net9 .0</TargetFramework >
55 <Nullable >enable</Nullable >
66 <ImplicitUsings >enable</ImplicitUsings >
77 </PropertyGroup >
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22 <PropertyGroup >
3- <Version >3.0 .0</Version >
4- <TargetFrameworks >netstandard2.0;net8.0</TargetFrameworks >
3+ <Version >3.1 .0</Version >
4+ <TargetFrameworks >netstandard2.0;net8.0;net9.0 </TargetFrameworks >
55 <AssemblyName >Hellang.Authentication.JwtBearer.Google</AssemblyName >
66 <RootNamespace >Hellang.Authentication.JwtBearer.Google</RootNamespace >
77 <Description >JWT Bearer authentication for Google tokens</Description >
1717 <PackageReference Include =" Microsoft.AspNetCore.Authentication.JwtBearer" Version =" 8.0.10" />
1818 <PackageReference Include =" Microsoft.IdentityModel.Protocols.OpenIdConnect" Version =" 8.1.2" />
1919 </ItemGroup >
20+
21+ <ItemGroup Condition =" '$(TargetFramework)' == 'net9.0'" >
22+ <PackageReference Include =" Microsoft.AspNetCore.Authentication.JwtBearer" Version =" 9.0.0" />
23+ <PackageReference Include =" Microsoft.IdentityModel.Protocols.OpenIdConnect" Version =" 8.2.0" />
24+ </ItemGroup >
25+
2026</Project >
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22 <PropertyGroup >
3- <Version >7.0 .0</Version >
4- <TargetFrameworks >net8.0</TargetFrameworks >
3+ <Version >7.1 .0</Version >
4+ <TargetFrameworks >net8.0;net9.0 </TargetFrameworks >
55 <AssemblyName >Hellang.Middleware.ProblemDetails</AssemblyName >
66 <RootNamespace >Hellang.Middleware.ProblemDetails</RootNamespace >
77 <Description >Error handling middleware, using RFC7807</Description >
2424 <FrameworkReference Include =" Microsoft.AspNetCore.App" />
2525 </ItemGroup >
2626
27- <ItemGroup >
27+ <ItemGroup Condition = " '$(TargetFramework)' == 'net8.0' " >
2828 <PackageReference Include =" System.Reflection.Metadata" Version =" 8.0.1" />
2929 </ItemGroup >
30+
31+ <ItemGroup Condition =" '$(TargetFramework)' == 'net9.0'" >
32+ <PackageReference Include =" System.Reflection.Metadata" Version =" 9.0.0" />
33+ </ItemGroup >
34+
3035</Project >
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22 <PropertyGroup >
3- <Version >2.0 .0-alpha.1</Version >
4- <TargetFrameworks >netstandard2.0;net8.0</TargetFrameworks >
3+ <Version >2.1 .0-alpha.1</Version >
4+ <TargetFrameworks >netstandard2.0;net8.0;net9.0 </TargetFrameworks >
55 <AssemblyName >Hellang.Middleware.RateLimiting</AssemblyName >
66 <RootNamespace >Hellang.Middleware.RateLimiting</RootNamespace >
77 <Description >Rate-limiting middleware using ASP.NET Core's IDistributedCache.</Description >
1818 <ItemGroup Condition =" '$(TargetFramework)' == 'net8.0'" >
1919 <FrameworkReference Include =" Microsoft.AspNetCore.App" />
2020 </ItemGroup >
21+
22+ <ItemGroup Condition =" '$(TargetFramework)' == 'net9.0'" >
23+ <FrameworkReference Include =" Microsoft.AspNetCore.App" />
24+ </ItemGroup >
25+
2126</Project >
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22 <PropertyGroup >
3- <Version >3.0 .0</Version >
4- <TargetFrameworks >net8.0</TargetFrameworks >
3+ <Version >3.1 .0</Version >
4+ <TargetFrameworks >net8.0;net9.0 </TargetFrameworks >
55 <AssemblyName >Hellang.Middleware.SpaFallback</AssemblyName >
66 <RootNamespace >Hellang.Middleware.SpaFallback</RootNamespace >
77 <Description >SPA fallback middleware for client-side routing</Description >
Original file line number Diff line number Diff line change 33 <OutputType >Exe</OutputType >
44 <IsPackable >False</IsPackable >
55 <LangVersion >9.0</LangVersion >
6- <TargetFrameworks >net8.0</TargetFrameworks >
6+ <TargetFrameworks >net8.0;net9.0 </TargetFrameworks >
77 </PropertyGroup >
88
99 <ItemGroup >
1010 <FrameworkReference Include =" Microsoft.AspNetCore.App" />
1111 </ItemGroup >
1212
13- <ItemGroup >
13+ <ItemGroup Condition = " '$(TargetFramework)' == 'net8.0' " >
1414 <PackageReference Include =" Microsoft.AspNetCore.TestHost" Version =" 8.0.10" />
1515 <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.1.0" />
1616 <PackageReference Include =" xunit" Version =" 2.4.1" />
2020 <IncludeAssets >runtime; build; native; contentfiles; analyzers</IncludeAssets >
2121 </PackageReference >
2222 </ItemGroup >
23+
24+ <ItemGroup Condition =" '$(TargetFramework)' == 'net9.0'" >
25+ <PackageReference Include =" Microsoft.AspNetCore.TestHost" Version =" 9.0.0" />
26+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.11.1" />
27+ <PackageReference Include =" xunit" Version =" 2.9.2" />
28+ <PackageReference Include =" xunit.runner.visualstudio" Version =" 2.8.2" />
29+ <PackageReference Include =" coverlet.collector" Version =" 6.0.2" >
30+ <PrivateAssets >all</PrivateAssets >
31+ <IncludeAssets >runtime; build; native; contentfiles; analyzers</IncludeAssets >
32+ </PackageReference >
33+ </ItemGroup >
34+
2335</Project >
You can’t perform that action at this time.
0 commit comments