Skip to content

Commit bc58903

Browse files
authored
Merge pull request #839 from DuendeSoftware/mb/templates
Fix templates ID in various tutorials
2 parents 0e981c3 + a2bfb6b commit bc58903

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/content/docs/bff/architecture/ui-hosting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ what that would look like:
3535
If you create a BFF host using our templates, the UI will be hosted in this way:
3636

3737
```bash title="Terminal"
38-
dotnet new bffremoteapi
38+
dotnet new duende-bff-remoteapi
3939

4040
# or
4141

42-
dotnet new bfflocalapi
42+
dotnet new duende-bff-localapi
4343
```
4444

4545
Many frontend applications require a build process, which complicates the use of the static file middleware at

src/content/docs/identityserver/quickstarts/2-interactive.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ the .NET CLI to add the quickstart UI to a project. Run the following command
5353
from the `src/IdentityServer` directory:
5454

5555
```console
56-
dotnet new isui
56+
dotnet new duende-is-ui
5757
```
5858

5959
### Enable The UI

src/content/docs/identityserver/quickstarts/4-entity-framework.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ multiple IdentityServer instances, you will use the
4040
:::note
4141
This quickstart shows how to add Entity Framework support to IdentityServer
4242
manually. There is also a template that will create a new IdentityServer project
43-
with the EntityFramework integration already added: `dotnet new isef`.
43+
with the EntityFramework integration already added: `dotnet new duende-is-ef`.
4444
:::
4545

4646
## Configure IdentityServer

src/content/docs/identityserver/quickstarts/5-aspnetid.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Start by creating a new IdentityServer project that will use ASP.NET Core
5858
Identity. Run the following commands from the `src` directory:
5959

6060
```console
61-
dotnet new isaspid -n IdentityServerAspNetIdentity
61+
dotnet new duende-is-aspid -n IdentityServerAspNetIdentity
6262
cd ..
6363
dotnet sln add ./src/IdentityServerAspNetIdentity
6464
```

0 commit comments

Comments
 (0)