Skip to content

Commit c26500f

Browse files
fix: fixed Azure Function assembly reference issues documented at Azure/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
1 parent 15461a0 commit c26500f

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

AutofacOnFunctions.Samples.NetStandard/AutofacOnFunctions.Samples.NetStandard.csproj

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,11 @@
44
<AzureFunctionsVersion>v2</AzureFunctionsVersion>
55
</PropertyGroup>
66
<ItemGroup>
7-
<PackageReference Include="AutofacOnFunctions" Version="1.0.11" />
8-
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="1.0.21" />
7+
<PackageReference Include="Autofac" Version="4.8.0" />
8+
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="1.0.23" />
9+
</ItemGroup>
10+
<ItemGroup>
11+
<ProjectReference Include="..\AutofacOnFunctions\AutofacOnFunctions.csproj" />
912
</ItemGroup>
1013
<ItemGroup>
1114
<None Update="host.json">

AutofacOnFunctions/AutofacOnFunctions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
</ItemGroup>
1919

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

2424
<ItemGroup>

0 commit comments

Comments
 (0)