Skip to content
Merged
Show file tree
Hide file tree
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
8 changes: 5 additions & 3 deletions 10/umbraco-forms/installation/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,14 @@ Umbraco contains the **Forms** section, by default. You will see a similar inter

To install the Umbraco Forms package (**Umbraco.Forms**), follow these steps:

1. Run the following command on a command prompt of your choice:
1. Identify the Umbraco CMS version your project is running.
2. Find a compatible version of Umbraco Forms that matches your Umbraco CMS version. A list of Umbraco Forms versions can be found on [nuget.org](https://www.nuget.org/packages/Umbraco.Forms#versions-body-tab).
3. Run the following command on a command prompt of your choice, replacing `<version_number>` with the appropriate version identified above:

```
dotnet add package Umbraco.Forms
dotnet add package Umbraco.Forms --version <version_number>
```
2. Restart the web application using the following command:
4. Restart the web application using the following command:

```
dotnet run
Expand Down
23 changes: 12 additions & 11 deletions 13/umbraco-forms/installation/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,18 @@ Umbraco contains the **Forms** section, by default. You will see a similar inter

To install the Umbraco Forms package (**Umbraco.Forms**), follow these steps:

1. Run the following command on a command prompt of your choice:

```
dotnet add package Umbraco.Forms
```

2. Restart the web application using the following command:

```
dotnet run
```
1. Identify the Umbraco CMS version your project is running.
2. Find a compatible version of Umbraco Forms that matches your Umbraco CMS version. A list of Umbraco Forms versions can be found on [nuget.org](https://www.nuget.org/packages/Umbraco.Forms#versions-body-tab).
3. Run the following command on a command prompt of your choice, replacing `<version_number>` with the appropriate version identified above:

```
dotnet add package Umbraco.Forms --version <version_number>
```
4. Restart the web application using the following command:

```
dotnet run
```

## Start Building Forms

Expand Down
11 changes: 6 additions & 5 deletions 14/umbraco-forms/installation/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,17 @@ Umbraco contains the **Forms** section, by default. You will see a similar inter

To install the Umbraco Forms package (**Umbraco.Forms**), follow these steps:

1. Run the following command on a command prompt of your choice:
1. Identify the Umbraco CMS version your project is running.
2. Find a compatible version of Umbraco Forms that matches your Umbraco CMS version. A list of Umbraco Forms versions can be found on [nuget.org](https://www.nuget.org/packages/Umbraco.Forms#versions-body-tab).
3. Run the following command on a command prompt of your choice, replacing `<version_number>` with the appropriate version identified above:

```cs
dotnet add package Umbraco.Forms
dotnet add package Umbraco.Forms --version <version_number>
```

2. Restart the web application using the following command:
4. Restart the web application using the following command:

```cs
dotnet run
dotnet run
```

## Start Building Forms
Expand Down
11 changes: 6 additions & 5 deletions 15/umbraco-forms/installation/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,17 @@ Umbraco contains the **Forms** section, by default. You will see a similar inter

To install the Umbraco Forms package (**Umbraco.Forms**), follow these steps:

1. Run the following command on a command prompt of your choice:
1. Identify the Umbraco CMS version your project is running.
2. Find a compatible version of Umbraco Forms that matches your Umbraco CMS version. A list of Umbraco Forms versions can be found on [nuget.org](https://www.nuget.org/packages/Umbraco.Forms#versions-body-tab).
3. Run the following command on a command prompt of your choice, replacing `<version_number>` with the appropriate version identified above:

```cs
dotnet add package Umbraco.Forms
dotnet add package Umbraco.Forms --version <version_number>
```

2. Restart the web application using the following command:
4. Restart the web application using the following command:

```cs
dotnet run
dotnet run
```

## Start Building Forms
Expand Down
Loading