Skip to content

Commit 191f907

Browse files
authored
Updates
1 parent 46811bd commit 191f907

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

aspnetcore/security/authentication/identity.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Create an ASP.NET Core Blazor Web App project with Individual Accounts.
6363
dotnet new blazor -au Individual -o BlazorApp1
6464
```
6565

66-
The `-o|--output` option creates a folder for the app with a folder name matching the default app name/namespace.
66+
The `-o|--output` option creates a folder for the app and sets the app name/namespace.
6767

6868
The preceding command creates a Blazor Web App using SQLite. To create the app with LocalDB, run the following command:
6969

@@ -79,7 +79,7 @@ The generated project includes Identity Razor components. The components are fou
7979
* `/Components/Account/Pages/Login`
8080
* `/Components/Account/Pages/Manage/ChangePassword`
8181

82-
Identity Razor components are described individually in the documentation for specific use cases and are subject to change each release. To view all of the components in the framework, see the [Blazor project template in the ASP.NET Core reference source (`dotnet/aspnetcore` GitHub repository)](https://github.com/dotnet/aspnetcore/tree/main/src/ProjectTemplates/Web.ProjectTemplates/content/BlazorWeb-CSharp/BlazorWeb-CSharp/Components/Account).
82+
Identity Razor components are described individually in the documentation for specific use cases and are subject to change each release. When you generate a Blazor Web App with Individual Accounts, Identity Razor components are included in the generated project. The Identity Razor components can also be inspected in the [Blazor project template in the ASP.NET Core reference source (`dotnet/aspnetcore` GitHub repository)](https://github.com/dotnet/aspnetcore/tree/main/src/ProjectTemplates/Web.ProjectTemplates/content/BlazorWeb-CSharp/BlazorWeb-CSharp/Components/Account).
8383

8484
[!INCLUDE[](~/includes/aspnetcore-repo-ref-source-links.md)]
8585

@@ -101,7 +101,7 @@ Create an ASP.NET Core Web Application (Razor Pages) project with Individual Acc
101101
dotnet new webapp -au Individual -o WebApp1
102102
```
103103

104-
The `-o|--output` option creates a folder for the app with a folder name matching the default app name/namespace.
104+
The `-o|--output` option creates a folder for the app and sets the app name/namespace.
105105

106106
The preceding command creates a Razor Pages app using SQLite. To create the app with LocalDB, run the following command:
107107

@@ -111,13 +111,13 @@ dotnet new webapp -au Individual -uld -o WebApp1
111111

112112
---
113113

114-
The generated project provides [ASP.NET Core Identity](xref:security/authentication/identity) as a [Razor class library](xref:razor-pages/ui-class). The Identity Razor class library exposes endpoints with the `Identity` area. For example:
114+
The generated project provides [ASP.NET Core Identity](xref:security/authentication/identity) as a [Razor class library (RCL)](xref:razor-pages/ui-class). The Identity Razor class library exposes endpoints with the `Identity` area. For example:
115115

116116
* `Areas/Identity/Pages/Account/Register`
117117
* `Areas/Identity/Pages/Account/Logoin`
118118
* `Areas/Identity/Pages/Account/Manage/ChangePassword`
119119

120-
Pages are described individually in the documentation for specific use cases and are subject to change each release. To view all of the pages in the framework, see the [ASP.NET Core reference source (`dotnet/aspnetcore` GitHub repository, `Identity/UI/src/Areas/Identity/Pages` folder)](https://github.com/dotnet/aspnetcore/tree/main/src/Identity/UI/src/Areas/Identity/Pages).
120+
Pages are described individually in the documentation for specific use cases and are subject to change each release. To view all of the pages in the RCL, see the [ASP.NET Core reference source (`dotnet/aspnetcore` GitHub repository, `Identity/UI/src/Areas/Identity/Pages` folder)](https://github.com/dotnet/aspnetcore/tree/main/src/Identity/UI/src/Areas/Identity/Pages). You can *scaffold* individual pages or all of the pages into the app. For more information, see <xref:security/authentication/scaffold-identity>.
121121

122122
## Create an MVC app with authentication
123123

@@ -135,7 +135,7 @@ Create an ASP.NET Core MVC project with Individual Accounts.
135135
dotnet new mvc -au Individual -o WebApplication1
136136
```
137137

138-
The `-o|--output` option creates a folder for the app with a folder name matching the default app name/namespace.
138+
The `-o|--output` option creates a folder for the app and sets the app name/namespace.
139139

140140
The preceding command creates an MVC app using SQLite. To create the web app with LocalDB, run the following command:
141141

@@ -145,13 +145,13 @@ dotnet new mvc -au Individual -uld -o WebApplication1
145145

146146
---
147147

148-
The generated project provides [ASP.NET Core Identity](xref:security/authentication/identity) as a [Razor class library](xref:razor-pages/ui-class). The Identity Razor class library is based on Razor Pages and exposes endpoints with the `Identity` area. For example:
148+
The generated project provides [ASP.NET Core Identity](xref:security/authentication/identity) as a [Razor class library (RCL)](xref:razor-pages/ui-class). The Identity Razor class library is based on Razor Pages and exposes endpoints with the `Identity` area. For example:
149149

150150
* `Areas/Identity/Pages/Account/Register`
151151
* `Areas/Identity/Pages/Account/Logoin`
152152
* `Areas/Identity/Pages/Account/Manage/ChangePassword`
153153

154-
Pages are described individually in the documentation for specific use cases and are subject to change each release. To view all of the pages, see the [ASP.NET Core reference source (`dotnet/aspnetcore` GitHub repository, `Identity/UI/src/Areas/Identity/Pages` folder)](https://github.com/dotnet/aspnetcore/tree/main/src/Identity/UI/src/Areas/Identity/Pages).
154+
Pages are described individually in the documentation for specific use cases and are subject to change each release. To view all of the pages in the RCL, see the [ASP.NET Core reference source (`dotnet/aspnetcore` GitHub repository, `Identity/UI/src/Areas/Identity/Pages` folder)](https://github.com/dotnet/aspnetcore/tree/main/src/Identity/UI/src/Areas/Identity/Pages). You can *scaffold* individual pages or all of the pages into the app. For more information, see <xref:security/authentication/scaffold-identity>.
155155

156156
### Apply migrations
157157

0 commit comments

Comments
 (0)