Skip to content

Commit 71be351

Browse files
committed
moving to preview9
1 parent 1e78bfc commit 71be351

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ install:
2424
$env:CommitHash = "$env:APPVEYOR_REPO_COMMIT"
2525
Install-Product node 10.0.0 x86
2626
Invoke-WebRequest -Uri 'https://dot.net/v1/dotnet-install.ps1' -UseBasicParsing -OutFile "$env:temp\dotnet-install.ps1"
27-
& $env:temp\dotnet-install.ps1 -Architecture x64 -Version '3.0.100-preview8-013656' -InstallDir "$env:ProgramFiles\dotnet"
27+
& $env:temp\dotnet-install.ps1 -Architecture x64 -Version '3.0.100-preview9-014004' -InstallDir "$env:ProgramFiles\dotnet"
2828
2929
build_script:
3030
- ps: |

build.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,15 +258,15 @@ $projects =
258258
foreach ($project in $projects)
259259
{
260260

261-
$cmd = "pack", "src\$project\$project.csproj", "-o", "..\..\buildoutput", "--no-build" , "-p:PackageVersion=$extensionVersion"
261+
$cmd = "pack", "src\$project\$project.csproj", "-o", "$buildOutput", "--no-build" , "-p:PackageVersion=$extensionVersion"
262262

263263
& dotnet $cmd
264264
}
265265

266-
$cmd = "pack", "tools\WebJobs.Script.Performance\WebJobs.Script.Performance.App\WebJobs.Script.Performance.App.csproj", "-o", "..\..\..\buildoutput"
266+
$cmd = "pack", "tools\WebJobs.Script.Performance\WebJobs.Script.Performance.App\WebJobs.Script.Performance.App.csproj", "-o", "$buildOutput"
267267
& dotnet $cmd
268268

269-
$cmd = "pack", "tools\ExtensionsMetadataGenerator\src\ExtensionsMetadataGenerator\ExtensionsMetadataGenerator.csproj", "-o", "..\..\..\..\buildoutput", "-c", "Release"
269+
$cmd = "pack", "tools\ExtensionsMetadataGenerator\src\ExtensionsMetadataGenerator\ExtensionsMetadataGenerator.csproj", "-o", "$buildOutput", "-c", "Release"
270270
& dotnet $cmd
271271

272272
$bypassPackaging = $env:APPVEYOR_PULL_REQUEST_NUMBER -and -not $env:APPVEYOR_PULL_REQUEST_TITLE.Contains("[pack]")

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@
5252
</ItemGroup>
5353

5454
<ItemGroup>
55-
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.0.0-preview8.19405.7" />
56-
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.0.0-preview8.19405.7" />
55+
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.0.0-preview9.19424.4" />
56+
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.0.0-preview9.19424.4" />
5757
<PackageReference Include="Microsoft.Azure.AppService.Proxy.Client" Version="2.0.8100001-0126c21e" />
5858
<PackageReference Include="Microsoft.Azure.Services.AppAuthentication" Version="1.0.3" />
5959
<PackageReference Include="Microsoft.Azure.WebJobs.Host.Storage" Version="3.0.14" />

src/WebJobs.Script/WebJobs.Script.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<PackageReference Include="Microsoft.Build" Version="15.8.166" />
4646
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Scripting" Version="2.8.2" />
4747
<PackageReference Include="Microsoft.DotNet.PlatformAbstractions" Version="2.1.0" />
48-
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="3.0.0-preview8.19405.4" />
48+
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="3.0.0-preview9.19423.4" />
4949
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.2.0" />
5050
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="2.2.0" />
5151
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="2.2.0" />

test/WebJobs.Script.Tests.Integration/WebJobs.Script.Tests.Integration.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
<PackageReference Include="Microsoft.AspNet.WebApi.Core" Version="5.2.6">
3535
<NoWarn>NU1701</NoWarn>
3636
</PackageReference>
37-
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="3.0.0-preview8.19405.7" />
37+
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="3.0.0-preview9.19424.4" />
3838
<PackageReference Include="Microsoft.Azure.DocumentDB.Core" Version="2.3.0" />
3939
<PackageReference Include="Microsoft.Azure.EventHubs" Version="2.1.0" />
4040
<PackageReference Include="Microsoft.Azure.Functions.NodeJsWorker" Version="1.1.1" />

test/WebJobs.Script.Tests/WebJobs.Script.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949

5050
<ItemGroup>
5151
<PackageReference Include="appinsights.testlogger" Version="1.0.0" />
52-
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="3.0.0-preview8.19405.7" />
52+
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="3.0.0-preview9.19424.4" />
5353
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.8.0" />
5454
<PackageReference Include="Moq" Version="4.9.0" />
5555
<PackageReference Include="StyleCop.Analyzers" Version="1.1.0-beta004" />

0 commit comments

Comments
 (0)