Skip to content

Commit

Permalink
Updated versions
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalybibikov committed Apr 15, 2020
1 parent 52b442e commit 15388b1
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 10 deletions.
2 changes: 1 addition & 1 deletion examples/FunctionExample/FunctionExample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<AzureFunctionsVersion>v3</AzureFunctionsVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="3.0.2" />
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="3.0.6" />
<PackageReference Include="Microsoft.Azure.Functions.Extensions" Version="1.0.0" />
</ItemGroup>
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<RepositoryUrl>https://github.com/vitalybibikov/AzureExtensions.FunctionToken</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<PackageTags>AzureFunctions Azure B2C ClaimsPrincipal Firebase FirebaseAdmin</PackageTags>
<Version>1.0.11</Version>
<Version>1.0.12</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>

Expand All @@ -22,17 +22,17 @@
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="3.0.2">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="FirebaseAdmin" Version="1.9.1">
<PackageReference Include="FirebaseAdmin" Version="1.10.0">
</PackageReference>
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="5.6.0"/>
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="6.5.0" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="5.6.0" >
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="6.5.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<AdditionalFiles Include="..\..\stylecop.json" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,6 @@ public static class FunctionTokenExtensions
{
public static IWebJobsBuilder AddAzureFunctionsToken(this IWebJobsBuilder builder, ITokenOptions options)
{
if (builder == null)
{
throw new ArgumentNullException(nameof(builder));
}

if (options == null)
{
throw new ArgumentNullException(nameof(options));
Expand Down

0 comments on commit 15388b1

Please sign in to comment.