|
3 | 3 | <PropertyGroup>
|
4 | 4 | <AssemblyName>DarkLoop.Azure.Functions.Authorization.Abstractions</AssemblyName>
|
5 | 5 | <RootNamespace>DarkLoop.Azure.Functions.Authorization</RootNamespace>
|
6 |
| - <TargetFrameworks>net6.0;net7.0</TargetFrameworks> |
| 6 | + <TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks> |
7 | 7 | <Version>0.0.1-preview</Version>
|
8 | 8 | <Description>DarkLoop's Azure Functions authorization extension shared core functionality for InProc and Isolated modules.</Description>
|
9 | 9 | <Nullable>enable</Nullable>
|
|
21 | 21 |
|
22 | 22 | <ItemGroup>
|
23 | 23 | <FrameworkReference Include="Microsoft.AspNetCore.App" />
|
24 |
| - <PackageReference Include="Microsoft.AspNetCore.Authorization" Version="3.0.3" /> |
25 |
| - <PackageReference Include="Microsoft.AspNetCore.Metadata" Version="3.0.3" /> |
26 | 24 | </ItemGroup>
|
27 | 25 |
|
28 | 26 | <ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
|
| 27 | + <PackageReference Include="Microsoft.AspNetCore.Metadata" Version="6.0.0" /> |
29 | 28 | <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.0" />
|
| 29 | + <PackageReference Include="Microsoft.AspNetCore.Authorization" Version="6.0.0" /> |
| 30 | + <PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="6.10.0" /> |
30 | 31 | </ItemGroup>
|
31 | 32 |
|
32 | 33 | <ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
|
| 34 | + <PackageReference Include="Microsoft.AspNetCore.Metadata" Version="7.0.0" /> |
33 | 35 | <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="7.0.0" />
|
| 36 | + <PackageReference Include="Microsoft.AspNetCore.Authorization" Version="7.0.0" /> |
| 37 | + <PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="7.0.0" /> |
| 38 | + </ItemGroup> |
| 39 | + |
| 40 | + <ItemGroup Condition="'$(TargetFramework)' == 'net8.0'"> |
| 41 | + <PackageReference Include="Microsoft.AspNetCore.Metadata" Version="8.0.0" /> |
| 42 | + <PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.0" /> |
| 43 | + <PackageReference Include="Microsoft.AspNetCore.Authorization" Version="8.0.0" /> |
| 44 | + <PackageReference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="8.0.0" /> |
34 | 45 | </ItemGroup>
|
35 | 46 |
|
36 | 47 | <ItemGroup>
|
|
0 commit comments