Skip to content

Commit c940f0f

Browse files
authored
Upgrade to 3.0 RTM packages and SDKs (#426)
This bumps versioning off pre-release packages for the .NET Core 3.0 release today.
1 parent 33fed0e commit c940f0f

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ init:
44
- SET PATH=%POSTGRES_PATH%\bin;%MYSQL_PATH%\bin;%PATH%
55

66
install:
7-
- choco install dotnetcore-sdk --version 3.0.100-preview9-014004
7+
- choco install dotnetcore-sdk --version 3.0.100
88
- nuget install redis-64 -excludeversion
99
- redis-64\tools\redis-server.exe --service-install
1010
- redis-64\tools\redis-server.exe --service-start

azure-pipelines.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ steps:
6060
- task: UseDotNet@2
6161
inputs:
6262
packageType: 'sdk'
63-
version: '3.0.100-preview9-014004'
63+
version: '3.0.100'
6464

6565
- task: PowerShell@2
6666
displayName: 'Build / Test / Create Packages'

global.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"sdk": {
3-
"version": "3.0.100-preview9-014004"
3+
"version": "3.0.100",
4+
"rollForward": "latestMajor"
45
}
56
}

samples/Samples.AspNetCore3/Samples.AspNetCore3.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88
<ProjectReference Include="..\..\src\MiniProfiler.EntityFrameworkCore\MiniProfiler.EntityFrameworkCore.csproj" />
99
<ProjectReference Include="..\..\src\MiniProfiler.Providers.SqlServer\MiniProfiler.Providers.SqlServer.csproj" />
1010
<ProjectReference Include="..\..\src\MiniProfiler.Providers.Sqlite\MiniProfiler.Providers.Sqlite.csproj" />
11-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.0.0-rc1.19456.14" />
11+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.0.0" />
1212
</ItemGroup>
1313
</Project>

src/MiniProfiler.AspNetCore/MiniProfiler.AspNetCore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</ItemGroup>
1313
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.0'">
1414
<FrameworkReference Include="Microsoft.AspNetCore.App" />
15-
<PackageReference Include="System.Text.Json" Version="4.6.0-rc1.19456.4" />
15+
<PackageReference Include="System.Text.Json" Version="4.6.0" />
1616
</ItemGroup>
1717
<ItemGroup Condition="'$(TargetFramework)' == 'net461' OR '$(TargetFramework)' == 'netstandard2.0'">
1818
<PackageReference Include="Microsoft.AspNetCore.Hosting.Abstractions" Version="2.0.0" />

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "4.1.0-preview.{height}",
2+
"version": "4.1.0",
33
"assemblyVersion": "4.0.0.0",
44
"publicReleaseRefSpec": [
55
"^refs/heads/master$", // we release out of master

0 commit comments

Comments
 (0)