Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to latest rtm SDK and react to Blazor changes #283

Merged
merged 2 commits into from
Oct 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<RuntimeVersion>8.0.0-rtm.23511.16</RuntimeVersion>
<AspNetCoreVersion>8.0.0-rtm.23512.10</AspNetCoreVersion>
<ExtensionsVersion>8.0.0-rtm.23511.3</ExtensionsVersion>
<AspNetCoreVersion>8.0.0-rtm.23512.20</AspNetCoreVersion>
<ExtensionsVersion>8.0.0-rtm.23512.3</ExtensionsVersion>
</PropertyGroup>
<ItemGroup>
<!-- Azure SDK for .NET dependencies -->
Expand Down
4 changes: 2 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"sdk": {
"version": "8.0.100-rtm.23512.3",
"version": "8.0.100-rtm.23512.16",
"rollForward": "latestPatch",
"allowPrerelease": true
},
"tools": {
"dotnet": "8.0.100-rtm.23512.3"
"dotnet": "8.0.100-rtm.23512.16"
},
"msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23505.1",
Expand Down
2 changes: 1 addition & 1 deletion samples/eShopLite/AppHost/AppHost.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\..\src\Aspire.Hosting.Azure.Provisioning\Aspire.Hosting.Azure.Provisioning.csproj" />
<ProjectReference Include="..\..\..\src\Aspire.Hosting\Aspire.Hosting.csproj" />
<ProjectReference Include="..\..\..\src\Aspire.Hosting.Azure\Aspire.Hosting.Azure.csproj" />
<ProjectReference Include="..\..\..\src\Aspire.Hosting.Azure.Provisioning\Aspire.Hosting.Azure.Provisioning.csproj" />
<ProjectReference Include="..\ApiGateway\ApiGateway.csproj" />
<ProjectReference Include="..\BasketService\BasketService.csproj" />
<ProjectReference Include="..\CatalogService\CatalogService.csproj" />
Expand Down
1 change: 1 addition & 0 deletions samples/eShopLite/MyFrontend/Components/_Imports.razor
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
@using Microsoft.AspNetCore.Components.Forms
@using Microsoft.AspNetCore.Components.Routing
@using Microsoft.AspNetCore.Components.Web
@using static Microsoft.AspNetCore.Components.Web.RenderMode
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just curious, since I haven't used static usings much, is it the standard to sort them with the regular usings? It sort of throws off visual scanning.

@using Microsoft.AspNetCore.Components.Web.Virtualization
@using Microsoft.JSInterop
@using MyFrontend
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@page "/counter"
@attribute [RenderModeInteractiveServer]
@rendermode InteractiveServer

<PageTitle>Counter</PageTitle>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
@using Microsoft.AspNetCore.Components.Forms
@using Microsoft.AspNetCore.Components.Routing
@using Microsoft.AspNetCore.Components.Web
@using static Microsoft.AspNetCore.Components.Web.RenderMode
@using Microsoft.AspNetCore.Components.Web.Virtualization
@using Microsoft.AspNetCore.OutputCaching
@using Microsoft.JSInterop
Expand Down