Skip to content

Commit

Permalink
Upgrade to 3.0 RTM packages and SDKs (#426)
Browse files Browse the repository at this point in the history
This bumps versioning off pre-release packages for the .NET Core 3.0 release today.
  • Loading branch information
NickCraver authored Sep 23, 2019
1 parent 33fed0e commit c940f0f
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ init:
- SET PATH=%POSTGRES_PATH%\bin;%MYSQL_PATH%\bin;%PATH%

install:
- choco install dotnetcore-sdk --version 3.0.100-preview9-014004
- choco install dotnetcore-sdk --version 3.0.100
- nuget install redis-64 -excludeversion
- redis-64\tools\redis-server.exe --service-install
- redis-64\tools\redis-server.exe --service-start
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ steps:
- task: UseDotNet@2
inputs:
packageType: 'sdk'
version: '3.0.100-preview9-014004'
version: '3.0.100'

- task: PowerShell@2
displayName: 'Build / Test / Create Packages'
Expand Down
3 changes: 2 additions & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"sdk": {
"version": "3.0.100-preview9-014004"
"version": "3.0.100",
"rollForward": "latestMajor"
}
}
2 changes: 1 addition & 1 deletion samples/Samples.AspNetCore3/Samples.AspNetCore3.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@
<ProjectReference Include="..\..\src\MiniProfiler.EntityFrameworkCore\MiniProfiler.EntityFrameworkCore.csproj" />
<ProjectReference Include="..\..\src\MiniProfiler.Providers.SqlServer\MiniProfiler.Providers.SqlServer.csproj" />
<ProjectReference Include="..\..\src\MiniProfiler.Providers.Sqlite\MiniProfiler.Providers.Sqlite.csproj" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.0.0-rc1.19456.14" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.0.0" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion src/MiniProfiler.AspNetCore/MiniProfiler.AspNetCore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="System.Text.Json" Version="4.6.0-rc1.19456.4" />
<PackageReference Include="System.Text.Json" Version="4.6.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net461' OR '$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="Microsoft.AspNetCore.Hosting.Abstractions" Version="2.0.0" />
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "4.1.0-preview.{height}",
"version": "4.1.0",
"assemblyVersion": "4.0.0.0",
"publicReleaseRefSpec": [
"^refs/heads/master$", // we release out of master
Expand Down

0 comments on commit c940f0f

Please sign in to comment.