Skip to content

Commit

Permalink
Merge branch 'upgrade/blazor080'
Browse files Browse the repository at this point in the history
  • Loading branch information
jsakamoto committed Feb 10, 2019
2 parents 7f58d5b + 354bd17 commit c919bbe
Show file tree
Hide file tree
Showing 21 changed files with 28 additions and 332 deletions.
2 changes: 1 addition & 1 deletion SampleSites/ClientSideBlazorSampleSite/App.cshtml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<Router AppAssembly=typeof(Program).Assembly />
<Router AppAssembly="typeof(Program).Assembly" />
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Blazor.Browser" Version="0.7.0-preview1-final" />
<PackageReference Include="Microsoft.AspNetCore.Blazor.Build" Version="0.7.0-preview1-final" PrivateAssets="all" />
<PackageReference Include="Toolbelt.Blazor.Gamepad" Version="1.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Blazor" Version="0.8.0-preview-19104-04" />
<PackageReference Include="Microsoft.AspNetCore.Blazor.Build" Version="0.8.0-preview-19104-04" PrivateAssets="all" />
<PackageReference Include="Toolbelt.Blazor.Gamepad" Version="2.0.0" />

<DotNetCliToolReference Include="Microsoft.AspNetCore.Blazor.Cli" Version="0.7.0-preview1-final" />
<DotNetCliToolReference Include="Microsoft.AspNetCore.Blazor.Cli" Version="0.8.0-preview-19104-04" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions SampleSites/ClientSideBlazorSampleSite/Startup.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using Microsoft.AspNetCore.Blazor.Builder;
using Microsoft.AspNetCore.Components.Builder;
using Microsoft.Extensions.DependencyInjection;
using Toolbelt.Blazor.Extensions.DependencyInjection;

Expand All @@ -11,7 +11,7 @@ public void ConfigureServices(IServiceCollection services)
services.AddGamepadList();
}

public void Configure(IBlazorApplicationBuilder app)
public void Configure(IComponentsApplicationBuilder app)
{
app.AddComponent<App>("app");
}
Expand Down
4 changes: 2 additions & 2 deletions SampleSites/ClientSideBlazorSampleSite/_ViewImports.cshtml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@using System.Net.Http
@using Microsoft.AspNetCore.Blazor.Layouts
@using Microsoft.AspNetCore.Blazor.Routing
@using Microsoft.AspNetCore.Components.Layouts
@using Microsoft.AspNetCore.Components.Routing
@using Microsoft.JSInterop
@using ClientSideBlazorSampleSite
4 changes: 2 additions & 2 deletions SampleSites/ClientSideBlazorSampleSite/wwwroot/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width">
<meta name="viewport" content="width=device-width" />
<title>SampleSite</title>
<base href="/" />
</head>
<body>
<app>Loading...</app>

<script src="_framework/blazor.webassembly.js"></script>
<script src="_framework/components.webassembly.js"></script>
</body>
</html>

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit c919bbe

Please sign in to comment.