Skip to content

Commit fc93e59

Browse files
authored
[Blazor] Update template to pass in attribute as boolean (#28285)
Description We introduced a public property as part of #27907 to enable users to opt-in. Turns out that this caused issues since we didn't update the target pack. As a result, the Razor compiler treats this new property as a regular HTML attribute (of type string) instead of as a boolean. In turn this causes the template to error at runtime when the application starts. Customer Impact Customers using 5.0.1 won't be able to create and run new blazor apps out of the box. They can fix the template code by preceding the true value in the attribute with @ to force the compiler to interpret it as C#. (Which is the same fix we are applying). Regression? Yes, 5.0.0. Users were able to create new blazor templates without this issue. Risk Low. We've manually validated the fix against a new project from a 5.0.1 template.
1 parent f255fad commit fc93e59

File tree

2 files changed

+4
-4
lines changed
  • src/ProjectTemplates/Web.ProjectTemplates/content

2 files changed

+4
-4
lines changed

src/ProjectTemplates/Web.ProjectTemplates/content/BlazorServerWeb-CSharp/App.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@*#if (NoAuth)
2-
<Router AppAssembly="@typeof(Program).Assembly" PreferExactMatches="true">
2+
<Router AppAssembly="@typeof(Program).Assembly" PreferExactMatches="@true">
33
<Found Context="routeData">
44
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
55
</Found>
@@ -11,7 +11,7 @@
1111
</Router>
1212
#else
1313
<CascadingAuthenticationState>
14-
<Router AppAssembly="@typeof(Program).Assembly" PreferExactMatches="true">
14+
<Router AppAssembly="@typeof(Program).Assembly" PreferExactMatches="@true">
1515
<Found Context="routeData">
1616
<AuthorizeRouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
1717
</Found>

src/ProjectTemplates/Web.ProjectTemplates/content/ComponentsWebAssembly-CSharp/Client/App.razor

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@*#if (NoAuth)
2-
<Router AppAssembly="@typeof(Program).Assembly" PreferExactMatches="true">
2+
<Router AppAssembly="@typeof(Program).Assembly" PreferExactMatches="@true">
33
<Found Context="routeData">
44
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)" />
55
</Found>
@@ -11,7 +11,7 @@
1111
</Router>
1212
#else
1313
<CascadingAuthenticationState>
14-
<Router AppAssembly="@typeof(Program).Assembly" PreferExactMatches="true">
14+
<Router AppAssembly="@typeof(Program).Assembly" PreferExactMatches="@true">
1515
<Found Context="routeData">
1616
<AuthorizeRouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)">
1717
<NotAuthorized>

0 commit comments

Comments
 (0)