Skip to content

Commit 318f7dc

Browse files
Merge pull request #8 from galvesribeiro/master
Updated to Blazor 0.5.0
2 parents 049f057 + 7d34513 commit 318f7dc

17 files changed

+3193
-1176
lines changed

.vsts-ci.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,10 @@ variables:
44
buildConfiguration: 'Release'
55

66
steps:
7-
8-
- task: DotNetCoreCLI@2
7+
- task: Npm@1
98
inputs:
10-
command: 'restore'
11-
projects: '**/*.csproj'
12-
9+
command: 'install'
10+
workingDir: src/Blazor.Extensions.Logging.JS
1311
- task: DotNetCoreCLI@2
1412
inputs:
1513
command: 'build'

.vsts-release.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@ variables:
44
buildConfiguration: 'Release'
55

66
steps:
7-
8-
- task: DotNetCoreCLI@2
7+
- task: Npm@1
98
inputs:
10-
command: 'restore'
11-
projects: '**/*.csproj'
9+
command: 'install'
10+
workingDir: src/Blazor.Extensions.Logging.JS
1211

1312
- task: DotNetCoreCLI@2
1413
inputs:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!---[![Build status](https://img.shields.io/circleci/project/github/BlazorExtensions/Logging.svg)](https://ci.dot.net/job/dotnet_orleans/job/master/)-->
1+
[![Build status](https://dotnet-ci.visualstudio.com/DotnetCI/_apis/build/status/Blazor-Extensions-Logging-CI?branch=master)](https://dotnet-ci.visualstudio.com/DotnetCI/_build/latest?definitionId=10&branch=master)
22
[![Package Version](https://img.shields.io/nuget/v/Blazor.Extensions.Logging.svg)](https://www.nuget.org/packages/Blazor.Extensions.Logging)
33
[![NuGet Downloads](https://img.shields.io/nuget/dt/Blazor.Extensions.Logging.svg)](https://www.nuget.org/packages/Blazor.Extensions.Logging)
44
[![License](https://img.shields.io/github/license/BlazorExtensions/Logging.svg)](https://github.com/BlazorExtensions/Logging/blob/master/LICENSE)

src/Blazor.Extensions.Logging.JS/Blazor.Extensions.Logging.JS.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@
1010
<TypeScriptToolsVersion>Latest</TypeScriptToolsVersion>
1111
<DefaultItemExcludes>${DefaultItemExcludes};dist\**;node_modules\**</DefaultItemExcludes>
1212
<NoWarn>CS2008</NoWarn>
13-
13+
1414
<!-- VS's FastUpToDateCheck doesn't consider .ts file changes, so it's necessary to disable it to get incremental builds to work correctly (albeit not as fast as if FastUpToDateCheck did work for them) -->
1515
<DisableFastUpToDateCheck>true</DisableFastUpToDateCheck>
1616
</PropertyGroup>
1717

1818
<ItemGroup>
19-
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="2.1.0" />
20-
<PackageReference Include="Microsoft.AspNetCore.Blazor.Build" Version="0.4.0" />
19+
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="2.1.1" />
20+
<PackageReference Include="Microsoft.AspNetCore.Blazor.Build" Version="0.5.0" />
2121
<WebpackInputs Include="**\*.ts" Exclude="dist\**;node_modules\**" />
2222
</ItemGroup>
2323

0 commit comments

Comments
 (0)