Skip to content

Latest commit

 

History

History
46 lines (31 loc) · 1.36 KB

File metadata and controls

46 lines (31 loc) · 1.36 KB
description
Follow the steps to install Umbraco UI Builder into your Umbraco CMS website.

Installation

In this article, you will learn how to install Umbraco UI Builder into your Umbraco CMS implementation.

Install via Command Line

Run the following command in your web project:

dotnet add package Umbraco.UIBuilder

For a class library without UI elements, install:

dotnet add package Umbraco.UIBuilder.Startup

Install via Visual Studio

To install via Visual Studio, follow these steps:

  1. Open Visual Studio and load your project.
  2. Go to Tools -> NuGet Package Manager -> Manage NuGet Packages for Solution...
  3. Select the Browse tab and search for Umbraco.UIBuilder.

Installing Umbraco UI Builder via Visual Studio

  1. Select a version from the Version drop-down based on the Umbraco CMS version you are using.
  2. Click Install.
  3. [Optional] Search for and install Umbraco.UIBuilder.Startup if installing without UI elements.
  4. Ensure that the package reference is added to the .csproj file once the installation is complete:
<ItemGroup>
<PackageReference Include="Umbraco.UIBuilder" Version="15.0.2" />
</ItemGroup>

Installing a License

For details on how to install a license, see the Licensing article.