File tree 2 files changed +4
-4
lines changed
src/Http.Authentication.JwtBearer 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFrameworks >net5.0; net6.0</TargetFrameworks >
4
+ <TargetFramework > net6.0</TargetFramework >
5
5
<AssemblyName >Microsoft.Azure.Functions.Worker.Extensions.Http.Authentication.JwtBearer</AssemblyName >
6
6
<RootNamespace >Microsoft.Azure.Functions.Worker.Http</RootNamespace >
7
7
<PackageId >Community.Azure.Functions.Worker.Extensions.Http.Authentication.JwtBearer</PackageId >
8
8
<Nullable >enable</Nullable >
9
9
</PropertyGroup >
10
10
11
11
<ItemGroup >
12
- <PackageReference Include =" Microsoft.AspNetCore.Authentication.JwtBearer" Version =" 5 .0.11 " />
12
+ <PackageReference Include =" Microsoft.AspNetCore.Authentication.JwtBearer" Version =" 6 .0.0 " />
13
13
<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 " />
15
15
</ItemGroup >
16
16
17
17
</Project >
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ namespace Microsoft.Azure.Functions.Worker.Http
12
12
internal static class MethodLocator
13
13
{
14
14
// 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*)$" ) ;
16
16
17
17
public static MethodInfo GetMethod ( this FunctionDefinition definition )
18
18
{
You can’t perform that action at this time.
0 commit comments