Skip to content

Commit 3a267e9

Browse files
kant2002galvesribeiro
authored andcommitted
Update to .NET Core 3 Preview 6 (#29)
* Update to .NET Core 3 Preview 6 * Update version of SDK to Preview 6 * Add description to the build tasks
1 parent 4f85b14 commit 3a267e9

File tree

5 files changed

+16
-7
lines changed

5 files changed

+16
-7
lines changed

.vsts-ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,26 @@ variables:
55

66
steps:
77
- task: DotNetCoreInstaller@0
8+
displayName: 'Use .NET Core sdk 3.0.100-preview6-012268'
89
inputs:
910
packageType: 'sdk'
10-
version: '3.0.100-preview4-011223'
11+
version: '3.0.100-preview6-012268'
1112

1213
- task: Npm@1
14+
displayName: 'Install NPM dependencies'
1315
inputs:
1416
command: 'install'
1517
workingDir: src/Blazor.Extensions.Storage.JS
1618

1719
- task: DotNetCoreCLI@2
20+
displayName: 'Build'
1821
inputs:
1922
command: 'build'
2023
projects: '**/*.csproj'
2124
arguments: '--configuration $(buildConfiguration)'
2225

2326
- task: DotNetCoreCLI@2
27+
displayName: 'Pack Nuget package'
2428
inputs:
2529
command: pack
2630
packagesToPack: 'src/Blazor.Extensions.Storage/*.csproj'

.vsts-release.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,22 +5,26 @@ variables:
55

66
steps:
77
- task: DotNetCoreInstaller@0
8+
displayName: 'Use .NET Core sdk 3.0.100-preview6-012268'
89
inputs:
910
packageType: 'sdk'
10-
version: '3.0.100-preview4-011223'
11+
version: '3.0.100-preview6-012268'
1112

1213
- task: Npm@1
14+
displayName: 'Install NPM dependencies'
1315
inputs:
1416
command: 'install'
1517
workingDir: src/Blazor.Extensions.Storage.JS
1618

1719
- task: DotNetCoreCLI@2
20+
displayName: 'Build'
1821
inputs:
1922
command: 'build'
2023
projects: '**/*.csproj'
2124
arguments: '--configuration $(buildConfiguration)'
2225

2326
- task: DotNetCoreCLI@2
27+
displayName: 'Pack Nuget package'
2428
inputs:
2529
command: pack
2630
packagesToPack: 'src/Blazor.Extensions.Storage/*.csproj'
@@ -30,6 +34,7 @@ steps:
3034
versionEnvVar: Version
3135

3236
- task: NuGetCommand@2
37+
displayName: 'Publish Nuget package'
3338
inputs:
3439
command: push
3540
packagesToPush: '$(build.ArtifactStagingDirectory)/**/*.nupkg;!$(build.ArtifactStagingDirectory)/**/*.symbols.nupkg'

src/Blazor.Extensions.Storage.JS/Blazor.Extensions.Storage.JS.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
</PropertyGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="Microsoft.AspNetCore.Blazor.Build" Version="3.0.0-preview4-19216-03" PrivateAssets="all" />
19+
<PackageReference Include="Microsoft.AspNetCore.Blazor.Build" Version="3.0.0-preview6.19307.2" PrivateAssets="all" />
2020
<WebpackInputs Include="**\*.ts" Exclude="dist\**;node_modules\**" />
2121
</ItemGroup>
2222

src/Blazor.Extensions.Storage/Blazor.Extensions.Storage.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="Microsoft.AspNetCore.Blazor" Version="3.0.0-preview4-19216-03" />
14+
<PackageReference Include="Microsoft.AspNetCore.Blazor" Version="3.0.0-preview6.19307.2" />
1515
</ItemGroup>
1616

1717
<ItemGroup>

test/Blazor.Extensions.Storage.Test/Blazor.Extensions.Storage.Test.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.AspNetCore.Blazor" Version="3.0.0-preview4-19216-03" />
11-
<PackageReference Include="Microsoft.AspNetCore.Blazor.Build" Version="3.0.0-preview4-19216-03" PrivateAssets="all" />
12-
<PackageReference Include="Microsoft.AspNetCore.Blazor.DevServer" Version="3.0.0-preview4-19216-03" PrivateAssets="all" />
10+
<PackageReference Include="Microsoft.AspNetCore.Blazor" Version="3.0.0-preview6.19307.2" />
11+
<PackageReference Include="Microsoft.AspNetCore.Blazor.Build" Version="3.0.0-preview6.19307.2" PrivateAssets="all" />
12+
<PackageReference Include="Microsoft.AspNetCore.Blazor.DevServer" Version="3.0.0-preview6.19307.2" PrivateAssets="all" />
1313
</ItemGroup>
1414

1515
<ItemGroup>

0 commit comments

Comments
 (0)