Skip to content
Merged
Changes from 1 commit
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
10 changes: 9 additions & 1 deletion 13/umbraco-cms/fundamentals/setup/install/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,15 @@ The fastest way to get the latest version of Umbraco up and running is using the
1. Open your command line.
2. Install the Umbraco templates:

`dotnet new install Umbraco.Templates::13.*`
```bash
dotnet new install Umbraco.Templates::13.*`
```

e.g.

```bash
dotnet new install Umbraco.Templates::13.8.1`
```
Copy link
Contributor

Choose a reason for hiding this comment

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

How about we add a bit more explanation to it as well:

Suggested change
e.g.
```bash
dotnet new install Umbraco.Templates::13.8.1`
```
{% hint style="info" %}
Replace `13.*` with the specific version you want to install.
Example:
```bash
dotnet new install Umbraco.Templates::13.8.1`

{% endhint %}


3. Create a new project:

Expand Down