Skip to content

Commit f34ad27

Browse files
authored
.NET Core 3.0 Preview 9 Updates (#421)
Updates the .NET Core SDKs and refs to preview 9 so we can get a NuGet preview out there.
1 parent 894ad57 commit f34ad27

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ tmp
1919
*.ncrunchproject
2020
packages/**/*.*
2121
.vs/*
22+
.idea/
2223
docs/_site
2324
BenchmarkDotNet.Artifacts
2425
samples/Samples.Mvc5/Properties/launchSettings.json

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-preview6-012264
7+
- choco install dotnetcore-sdk --version 3.0.100-preview9-014004
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-preview6-012264'
63+
version: '3.0.100-preview9-014004'
6464

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

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"sdk": {
3-
"version": "3.0.100-preview6-012264"
3+
"version": "3.0.100-preview9-014004"
44
}
55
}

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-preview6.19304.10" />
11+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.0.0-preview9.19423.6" />
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-preview8.19405.3" />
15+
<PackageReference Include="System.Text.Json" Version="4.6.0-preview9.19421.4" />
1616
</ItemGroup>
1717
<ItemGroup Condition="'$(TargetFramework)' == 'net461' OR '$(TargetFramework)' == 'netstandard2.0'">
1818
<PackageReference Include="Microsoft.AspNetCore.Hosting.Abstractions" Version="2.0.0" />

0 commit comments

Comments
 (0)