Skip to content
Merged
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
16 changes: 15 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,21 @@ 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.*`
```

{% 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