Skip to content

Commit

Permalink
fix: fixed Azure Function assembly reference issues documented at Azu…
Browse files Browse the repository at this point in the history
…re/azure-functions-host#992 via moving sample to Azure Functions GA version 1.0.23 and AutofacOnFunctions to WebJobs 3.0.0 instead of 3.0.0-rc1
  • Loading branch information
holgerleichsenring committed Oct 30, 2018
1 parent 15461a0 commit c26500f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@
<AzureFunctionsVersion>v2</AzureFunctionsVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AutofacOnFunctions" Version="1.0.11" />
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="1.0.21" />
<PackageReference Include="Autofac" Version="4.8.0" />
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="1.0.23" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\AutofacOnFunctions\AutofacOnFunctions.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="host.json">
Expand Down
2 changes: 1 addition & 1 deletion AutofacOnFunctions/AutofacOnFunctions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)'=='netstandard2.0'">
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.0-rc1" />
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit c26500f

Please sign in to comment.