Skip to content

Commit 46399a7

Browse files
committed
moving to .NET Core 3 GA
1 parent 1928a23 commit 46399a7

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
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-rc1-014190' -InstallDir "$env:ProgramFiles\dotnet"
27+
& $env:temp\dotnet-install.ps1 -Architecture x64 -Version '3.0.100' -InstallDir "$env:ProgramFiles\dotnet"
2828
2929
build_script:
3030
- ps: |

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@
7272
</ItemGroup>
7373

7474
<ItemGroup>
75-
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.0.0-rc1.19457.4" />
76-
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.0.0-rc1.19457.4" />
75+
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.0.0" />
76+
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.0.0" />
7777
<PackageReference Include="Microsoft.Azure.AppService.Proxy.Client" Version="2.0.8100001-0126c21e" />
7878
<PackageReference Include="Microsoft.Azure.Services.AppAuthentication" Version="1.0.3" />
7979
<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-rc1.19456.10" />
48+
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="3.0.0" />
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-rc1.19457.4" />
37+
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="3.0.0" />
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-rc1.19457.4" />
52+
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="3.0.0" />
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)