Skip to content

Commit

Permalink
Updating WebJobs SDK references to beta7
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiocav committed Jun 5, 2018
1 parent 43d87b4 commit cc84403
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 17 deletions.
1 change: 1 addition & 0 deletions NuGet.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<packageSources>
<add key="nuget.org" value="https://www.nuget.org/api/v2/" />
<add key="azure_app_service" value="https://www.myget.org/F/azure-appservice/api/v2" />
<add key="azure_app_service_staging" value="https://www.myget.org/F/azure-appservice-staging/api/v2" />
<add key="buildTools" value="https://www.myget.org/F/30de4ee06dd54956a82013fa17a3accb/" />
<add key="AspNetVNext" value="https://dotnet.myget.org/F/aspnetcore-dev/api/v3/index.json" />
</packageSources>
Expand Down
10 changes: 5 additions & 5 deletions src/WebJobs.Script.WebHost/WebJobs.Script.WebHost.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Buffering" Version="0.4.0-preview2-28189" />
<PackageReference Include="Microsoft.Azure.AppService.Proxy.Client" Version="2.0.5150001-beta-b9e0da04" />
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.0-beta6-11316" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions" Version="3.0.0-beta6-10622" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="3.0.0-beta6-10622">
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.0-beta7" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions" Version="3.0.0-beta7" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="3.0.0-beta7">
<NoWarn>NU1701</NoWarn>
</PackageReference>
<PackageReference Include="Microsoft.Azure.WebJobs.Logging" Version="3.0.0-beta6-11316" />
<PackageReference Include="Microsoft.Azure.WebJobs.Logging.ApplicationInsights" Version="3.0.0-beta6-11316" />
<PackageReference Include="Microsoft.Azure.WebJobs.Logging" Version="3.0.0-beta7" />
<PackageReference Include="Microsoft.Azure.WebJobs.Logging.ApplicationInsights" Version="3.0.0-beta7" />
<PackageReference Include="Microsoft.Azure.WebSites.DataProtection" Version="2.1.88-alpha" />
<PackageReference Include="System.Net.Primitives" Version="4.3.0" />
<PackageReference Include="WindowsAzure.Storage" Version="8.6.0" />
Expand Down
5 changes: 0 additions & 5 deletions src/WebJobs.Script/Description/CacheMetadataResolver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,6 @@ public override int GetHashCode()
return _innerResolver.GetHashCode();
}

public override PortableExecutableReference ResolveMissingAssembly(MetadataReference definition, AssemblyIdentity referenceIdentity)
{
return base.ResolveMissingAssembly(definition, referenceIdentity);
}

public override ImmutableArray<PortableExecutableReference> ResolveReference(string reference, string baseFilePath, MetadataReferenceProperties properties)
{
string cacheKey = $"{reference}:{baseFilePath}";
Expand Down
12 changes: 6 additions & 6 deletions src/WebJobs.Script/WebJobs.Script.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,16 +28,16 @@
<PackageReference Include="Microsoft.AspNetCore.Mvc.WebApiCompatShim" Version="2.1.0">
<NoWarn>NU1701</NoWarn>
</PackageReference>
<PackageReference Include="Microsoft.Azure.AppService.Proxy.Client" Version="2.0.4780001-beta-0fed1b79" />
<PackageReference Include="Microsoft.Azure.AppService.Proxy.Client" Version="2.0.5150001-beta-b9e0da04" />
<PackageReference Include="Microsoft.Azure.Functions.JavaWorker" Version="1.1.0-beta2-10041" />
<PackageReference Include="Microsoft.Azure.Functions.NodeJsWorker" Version="1.0.0-beta1-10031" />
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.0-beta6-11316" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions" Version="3.0.0-beta6-10622" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="3.0.0-beta6-10622">
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.0-beta7" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions" Version="3.0.0-beta7" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="3.0.0-beta7">
<NoWarn>NU1701</NoWarn>
</PackageReference>
<PackageReference Include="Microsoft.Azure.WebJobs.Logging" Version="3.0.0-beta6-11316" />
<PackageReference Include="Microsoft.Azure.WebJobs.Logging.ApplicationInsights" Version="3.0.0-beta6-11316" />
<PackageReference Include="Microsoft.Azure.WebJobs.Logging" Version="3.0.0-beta7" />
<PackageReference Include="Microsoft.Azure.WebJobs.Logging.ApplicationInsights" Version="3.0.0-beta7" />
<PackageReference Include="Microsoft.Build" Version="15.3.409" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="2.8.2" />
<PackageReference Include="Microsoft.DotNet.PlatformAbstractions" Version="2.1.0" />
Expand Down
2 changes: 1 addition & 1 deletion test/TestFunctions/TestFunctions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="3.0.0-beta6-10622" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="3.0.0-beta7" />
</ItemGroup>

</Project>

0 comments on commit cc84403

Please sign in to comment.