File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/Http.Authentication.JwtBearer Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFrameworks >net5.0; net6.0</TargetFrameworks >
4+ <TargetFramework > net6.0</TargetFramework >
55 <AssemblyName >Microsoft.Azure.Functions.Worker.Extensions.Http.Authentication.JwtBearer</AssemblyName >
66 <RootNamespace >Microsoft.Azure.Functions.Worker.Http</RootNamespace >
77 <PackageId >Community.Azure.Functions.Worker.Extensions.Http.Authentication.JwtBearer</PackageId >
88 <Nullable >enable</Nullable >
99 </PropertyGroup >
1010
1111 <ItemGroup >
12- <PackageReference Include =" Microsoft.AspNetCore.Authentication.JwtBearer" Version =" 5 .0.11 " />
12+ <PackageReference Include =" Microsoft.AspNetCore.Authentication.JwtBearer" Version =" 6 .0.0 " />
1313 <PackageReference Include =" Microsoft.Azure.Functions.Worker.Extensions.Http" Version =" 3.0.13" />
14- <PackageReference Include =" Microsoft.Azure.Functions.Worker.Core" Version =" 1.3.1 " />
14+ <PackageReference Include =" Microsoft.Azure.Functions.Worker.Core" Version =" 1.4.0 " />
1515 </ItemGroup >
1616
1717</Project >
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ namespace Microsoft.Azure.Functions.Worker.Http
1212 internal static class MethodLocator
1313 {
1414 // https://github.com/Azure/azure-functions-dotnet-worker/blob/main/src/DotNetWorker.Core/Invocation/DefaultMethodInfoLocator.cs
15- private static readonly Regex _entryPointRegex = new Regex ( "^(?<typename>.*)\\ .(?<methodname>\\ S*)$" ) ;
15+ private static readonly Regex _entryPointRegex = new ( "^(?<typename>.*)\\ .(?<methodname>\\ S*)$" ) ;
1616
1717 public static MethodInfo GetMethod ( this FunctionDefinition definition )
1818 {
You can’t perform that action at this time.
0 commit comments