Skip to content

Commit bb19be4

Browse files
committed
Update to Blazor 0.7.0
1 parent 40f3fee commit bb19be4

File tree

4 files changed

+50
-50
lines changed

4 files changed

+50
-50
lines changed
Lines changed: 35 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,35 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
2-
3-
<PropertyGroup>
4-
<TargetFramework>netstandard2.0</TargetFramework>
5-
<OutputType>Library</OutputType>
6-
<IsPackable>false</IsPackable>
7-
<BlazorLinkOnBuild>false</BlazorLinkOnBuild>
8-
<LangVersion>latest</LangVersion>
9-
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
10-
<TypeScriptToolsVersion>Latest</TypeScriptToolsVersion>
11-
<DefaultItemExcludes>${DefaultItemExcludes};dist\**;node_modules\**</DefaultItemExcludes>
12-
<NoWarn>CS2008</NoWarn>
13-
14-
<!-- 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) -->
15-
<DisableFastUpToDateCheck>true</DisableFastUpToDateCheck>
16-
</PropertyGroup>
17-
18-
<ItemGroup>
19-
<PackageReference Include="Microsoft.AspNetCore.Blazor.Build" Version="0.6.0" />
20-
<WebpackInputs Include="**\*.ts" Exclude="dist\**;node_modules\**" />
21-
</ItemGroup>
22-
23-
<Target Name="EnsureNpmRestored" Condition="!Exists('node_modules')">
24-
<Message Importance="high" Text="Restoring dependencies using 'npm'. This may take several minutes..." />
25-
<Exec Command="npm install" />
26-
</Target>
27-
28-
<Target Name="RunWebpack" AfterTargets="ResolveReferences" Inputs="@(WebpackInputs)" Outputs="dist\blazor.extensions.storage.js" DependsOnTargets="EnsureNpmRestored">
29-
<RemoveDir Directories="dist" />
30-
<Exec Command="npm run build" />
31-
<ItemGroup>
32-
<EmbeddedResource Include="dist\**\*.js" LogicalName="blazor:js:%(RecursiveDir)%(Filename)%(Extension)" />
33-
</ItemGroup>
34-
</Target>
35-
</Project>
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netstandard2.0</TargetFramework>
5+
<OutputType>Library</OutputType>
6+
<IsPackable>false</IsPackable>
7+
<BlazorLinkOnBuild>false</BlazorLinkOnBuild>
8+
<LangVersion>latest</LangVersion>
9+
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
10+
<TypeScriptToolsVersion>Latest</TypeScriptToolsVersion>
11+
<DefaultItemExcludes>${DefaultItemExcludes};dist\**;node_modules\**</DefaultItemExcludes>
12+
<NoWarn>CS2008</NoWarn>
13+
14+
<!-- 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) -->
15+
<DisableFastUpToDateCheck>true</DisableFastUpToDateCheck>
16+
</PropertyGroup>
17+
18+
<ItemGroup>
19+
<PackageReference Include="Microsoft.AspNetCore.Blazor.Build" Version="0.7.0" />
20+
<WebpackInputs Include="**\*.ts" Exclude="dist\**;node_modules\**" />
21+
</ItemGroup>
22+
23+
<Target Name="EnsureNpmRestored" Condition="!Exists('node_modules')">
24+
<Message Importance="high" Text="Restoring dependencies using 'npm'. This may take several minutes..." />
25+
<Exec Command="npm install" />
26+
</Target>
27+
28+
<Target Name="RunWebpack" AfterTargets="ResolveReferences" Inputs="@(WebpackInputs)" Outputs="dist\blazor.extensions.storage.js" DependsOnTargets="EnsureNpmRestored">
29+
<RemoveDir Directories="dist" />
30+
<Exec Command="npm run build" />
31+
<ItemGroup>
32+
<EmbeddedResource Include="dist\**\*.js" LogicalName="blazor:js:%(RecursiveDir)%(Filename)%(Extension)" />
33+
</ItemGroup>
34+
</Target>
35+
</Project>

src/Blazor.Extensions.Storage.JS/package-lock.json

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.Browser" Version="0.6.0" />
14+
<PackageReference Include="Microsoft.AspNetCore.Blazor.Browser" Version="0.7.0" />
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

88
<ItemGroup>
99
<PackageReference Include="Blazor.Extensions.Logging" Version="0.1.8" />
10-
<PackageReference Include="Microsoft.AspNetCore.Blazor.Browser" Version="0.6.0" />
11-
<PackageReference Include="Microsoft.AspNetCore.Blazor.Build" Version="0.6.0" />
12-
<DotNetCliToolReference Include="Microsoft.AspNetCore.Blazor.Cli" Version="0.6.0" />
10+
<PackageReference Include="Microsoft.AspNetCore.Blazor.Browser" Version="0.7.0" />
11+
<PackageReference Include="Microsoft.AspNetCore.Blazor.Build" Version="0.7.0" />
12+
<DotNetCliToolReference Include="Microsoft.AspNetCore.Blazor.Cli" Version="0.7.0" />
1313
</ItemGroup>
1414

1515
<ItemGroup>

0 commit comments

Comments
 (0)