-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathAzureFunctions.Extensions.OpenIDConnect.Isolated.csproj
More file actions
50 lines (43 loc) · 2.26 KB
/
AzureFunctions.Extensions.OpenIDConnect.Isolated.csproj
File metadata and controls
50 lines (43 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<PublisherName>Fabrice Michellonet</PublisherName>
<PackageId>AzureFunctions.Extensions.OpenIDConnect.Isolated</PackageId>
<Version>1.0.0.0</Version>
<Copyright>Fabrice Michellonet 2021</Copyright>
<Title>Isolated worker Azure Functions Authentication</Title>
<Description>
OIDC / JWT Bearer Tokens authentication made easy for isolated worker Azure Functions.
Works with the well known ASPNET [Authorize] attribute.
Works with popular identity providers including Auth0, Azure AD B2C, Azure AD, Google and Okta.
</Description>
<Authors>Fabrice Michellonet</Authors>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>git://github.com/fmichellonet/AzureFunctions.Extensions.OpenIDConnect</RepositoryUrl>
<PackageReleaseNotes></PackageReleaseNotes>
<PackageProjectUrl>https://github.com/fmichellonet/AzureFunctions.Extensions.OpenIDConnect</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageTags>Azure Functions;Token Validation;JWT;OIDC;Auth0;Azure AD B2C;Azure AD;Okta;Google</PackageTags>
<!-- Optional: Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<!-- Optional: Embed source files that are not tracked by the source control manager in the PDB -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<!-- Optional: Build symbol package (.snupkg) to distribute the PDB containing Source Link -->
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<None Include="..\AzureFunctions.Extensions.OpenIDConnect\icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Functions.Worker.Core" Version="1.8.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Abstractions" Version="1.1.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="3.0.13" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AzureFunctions.Extensions.OpenIDConnect\AzureFunctions.Extensions.OpenIDConnect.csproj" />
</ItemGroup>
</Project>