Skip to content

Commit 7d8c3b2

Browse files
committed
Updating SDK references and bumping version information
1 parent 025d8b7 commit 7d8c3b2

File tree

14 files changed

+21
-21
lines changed

14 files changed

+21
-21
lines changed

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ branches:
88
- core
99

1010
image:
11-
- Visual Studio 2017
1211
- Ubuntu
12+
- Visual Studio 2017
1313

1414
max_jobs: 1
1515

@@ -22,7 +22,7 @@ for:
2222
- sh: >-
2323
mkdir .dotnet &&
2424
chmod +x dotnet-install.sh &&
25-
./dotnet-install.sh --version 2.1.300 --install-dir .dotnet &&
25+
./dotnet-install.sh --version 2.1.400 --install-dir .dotnet &&
2626
PATH=".dotnet:"$PATH && dotnet --info
2727
build_script:
2828
- sh: dotnet build WebJobs.Script.sln

build/common.props

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
<PropertyGroup>
33
<TargetFramework>netstandard2.0</TargetFramework>
44
<LangVersion>7.2</LangVersion>
5+
<RuntimeReleaseSuffix>-rc1</RuntimeReleaseSuffix>
56
<BuildNumber Condition=" '$(BuildNumber)' == '' ">1</BuildNumber>
67
<MajorMinorProductVersion>2.0</MajorMinorProductVersion>
7-
<Version>$(MajorMinorProductVersion).0-beta2$(VersionSuffix)</Version>
8+
<Version>$(MajorMinorProductVersion).0$(RuntimeReleaseSuffix)$(VersionSuffix)</Version>
89
<AssemblyVersion>$(MajorMinorProductVersion).0.0</AssemblyVersion>
910
<FileVersion>$(MajorMinorProductVersion).$(BuildNumber).0</FileVersion>
1011
<CommitHash Condition="$(CommitHash) == ''">N/A</CommitHash>
11-
<InformationalVersion>$(FileVersion)-beta1 Commit hash: $(CommitHash)</InformationalVersion>
12+
<InformationalVersion>$(FileVersion)$(RuntimeReleaseSuffix) Commit hash: $(CommitHash)</InformationalVersion>
1213
<Authors>Microsoft</Authors>
1314
<Company>Microsoft</Company>
1415
<Product>Azure WebJobs SDK Script Runtime</Product>

src/WebJobs.Script.WebHost/WebJobs.Script.WebHost.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949
<PackageReference Include="Microsoft.AspNetCore.Buffering" Version="0.4.0-preview2-28189" />
5050
<PackageReference Include="Microsoft.Azure.AppService.Proxy.Client" Version="2.0.5350001-beta-fc119b98" />
5151
<PackageReference Include="Microsoft.AspNetCore.Server.IIS" Version="2.1.0-a-oob-2-1-oob-17035" />
52-
<PackageReference Include="Microsoft.Azure.WebJobs.Host.Storage" Version="3.0.0-beta8" />
53-
<PackageReference Include="Microsoft.Azure.WebJobs.Logging" Version="3.0.0-beta8" />
52+
<PackageReference Include="Microsoft.Azure.WebJobs.Host.Storage" Version="3.0.0-rc1" />
53+
<PackageReference Include="Microsoft.Azure.WebJobs.Logging" Version="3.0.0-rc1" />
5454
<PackageReference Include="Microsoft.Azure.WebSites.DataProtection" Version="2.1.88-alpha" />
5555
<PackageReference Include="System.Net.Primitives" Version="4.3.0" />
5656
<PackageReference Include="WindowsAzure.Storage" Version="9.3.1" />

src/WebJobs.Script.WebHost/WebScriptHostBuilderExtension.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public static IHostBuilder AddWebScriptHost(this IHostBuilder builder, IServiceP
2626
.AddScriptHost(webHostOptions, configLoggerFactory, webJobsBuilder =>
2727
{
2828
webJobsBuilder
29-
.AddWebJobsLogging() // Enables WebJobs v1 classic logging
29+
.AddDashboardLogging() // Enables WebJobs v1 classic logging
3030
.AddAzureStorageCoreServices();
3131

3232
configureWebJobs?.Invoke(webJobsBuilder);

src/WebJobs.Script/Binding/WebJobsCoreScriptBindingProvider.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,7 @@ public override Collection<Attribute> GetAttributes()
6161

6262
var attribute = new HttpTriggerAttribute(authLevel, methods)
6363
{
64-
Route = Context.GetMetadataValue<string>("route"),
65-
WebHookType = Context.GetMetadataValue<string>("webHookType")
64+
Route = Context.GetMetadataValue<string>("route")
6665
};
6766

6867
return new Collection<Attribute> { attribute };

src/WebJobs.Script/WebJobs.Script.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@
3333
<PackageReference Include="Microsoft.Azure.AppService.Proxy.Client" Version="2.0.5350001-beta-fc119b98" />
3434
<PackageReference Include="Microsoft.Azure.Functions.JavaWorker" Version="1.1.1-beta03" />
3535
<PackageReference Include="Microsoft.Azure.Functions.NodeJsWorker" Version="1.0.0-beta4-10082" />
36-
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.0-beta8" />
37-
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions" Version="3.0.0-beta8" />
38-
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="3.0.0-beta8" />
39-
<PackageReference Include="Microsoft.Azure.WebJobs.Logging.ApplicationInsights" Version="3.0.0-beta8" />
36+
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.0-rc1" />
37+
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions" Version="3.0.0-rc1" />
38+
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="3.0.0-rc1" />
39+
<PackageReference Include="Microsoft.Azure.WebJobs.Logging.ApplicationInsights" Version="3.0.0-rc1" />
4040
<PackageReference Include="Microsoft.Build" Version="15.8.166" />
4141
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="2.8.2" />
4242
<PackageReference Include="Microsoft.DotNet.PlatformAbstractions" Version="2.1.0" />

test/TestFunctions/TestFunctions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
</PropertyGroup>
66

77
<ItemGroup>
8-
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="3.0.0-beta8" />
8+
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="3.0.0-rc1" />
99
</ItemGroup>
1010

1111
</Project>

test/WebJobs.Script.Tests.Integration/EventHubs/EventHubsEndToEndTestsBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ protected override ExtensionPackageReference[] GetExtensionsToInstall()
6767
new ExtensionPackageReference
6868
{
6969
Id = "Microsoft.Azure.WebJobs.Extensions.EventHubs",
70-
Version = "3.0.0-beta*"
70+
Version = "3.0.0-rc*"
7171
}
7272
};
7373
}

test/WebJobs.Script.Tests.Integration/ScriptHostEndToEnd/ListenerFailureTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public class TestFixture : EndToEndTestFixture
5757
{
5858
private const string ScriptRoot = @"TestScripts\ListenerExceptions";
5959

60-
public TestFixture() : base(ScriptRoot, "node", "Microsoft.Azure.WebJobs.Extensions.EventHubs", "3.0.0-beta6-11300")
60+
public TestFixture() : base(ScriptRoot, "node", "Microsoft.Azure.WebJobs.Extensions.EventHubs", "3.0.0-rc*")
6161
{
6262
}
6363

test/WebJobs.Script.Tests.Integration/ServiceBus/ServiceBusEndToEndTestBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public abstract class ServiceBusTestFixture : EndToEndTestFixture
8888
public string TestTopicName2 = EntityNameHelper.FormatSubscriptionPath("core-test-topic1", "sub2");
8989
private string connectionString = AmbientConnectionStringProvider.Instance.GetConnectionString(ConnectionStringNames.ServiceBus);
9090

91-
protected ServiceBusTestFixture(string rootPath, string testId) : base(rootPath, testId, "Microsoft.Azure.WebJobs.ServiceBus", "3.0.0-beta4-11270")
91+
protected ServiceBusTestFixture(string rootPath, string testId) : base(rootPath, testId, "Microsoft.Azure.WebJobs.ServiceBus", "3.0.0-rc*")
9292
{
9393
}
9494

0 commit comments

Comments
 (0)