Umbraco UI Builder
CMSCloudHeartcoreDXP
10.latest (LTS)
10.latest (LTS)
  • Umbraco UI Builder Documentation
  • Known Issues
  • Release Notes
  • Installation
    • Installing Umbraco UI Builder
    • Licensing
  • Upgrading
    • Upgrading Umbraco UI Builder
    • Version Specific Upgrade Notes
    • Migrate from Konstrukt to Umbraco UI Builder
  • Getting Started
    • Overview
    • Configuration
    • User Interface
  • How-to Guides
    • Creating your first integration
  • Areas
    • Overview
    • Sections
      • Summary Dashboards
    • Trees
      • Folders
    • Dashboards
    • Context Apps
  • Collections
    • Overview
    • The Basics
    • List Views
      • Field Views
    • Editors
    • Child Collections
      • Child Collection Groups
  • Searching
    • Overview
    • Searchable Properties
  • Filtering
    • Overview
    • Global Filters
    • Data Views
      • Data Views Builders
    • Filterable Properties
  • Actions
    • Overview
    • The Basics
    • Action Visibility
    • Inbuilt Actions
  • Cards
    • Overview
    • Count Cards
    • Custom Cards
  • Property Editors
    • Overview
    • Entity Picker
  • Advanced
    • Virtual Sub Trees
    • Encrypted Properties
    • Value Mappers
    • Repositories
    • Events
  • Miscellaneous
    • Conventions
    • Umbraco Aliases
Powered by GitBook
On this page
  • Get the latest version of Umbraco UI Builder
  • NuGet
  • Visual Studio
Edit on GitHub
Export as PDF
  1. Upgrading

Upgrading Umbraco UI Builder

PreviousLicensingNextVersion Specific Upgrade Notes

Last updated 1 year ago

This article shows how to manually upgrade Umbraco UI Builder to run the latest version. When upgrading Umbraco UI Builder, be sure to also consult the notes to learn about potential breaking changes and common pitfalls.

Before upgrading, it is always advisable to take a complete backup of your site and database.

Get the latest version of Umbraco UI Builder

To upgrade to the latest version of Umbraco UI Builder you can use:

  • NuGet

  • Visual Studio

NuGet

  • NuGet installs the latest version of the package when you use the dotnet add package Umbraco.UIBuilder command unless you specify a package version: dotnet add package Umbraco.UIBuilder --version <VERSION>

  • After you have added a package reference to your project by executing the dotnet add package Umbraco.UIBuilder command in the directory that contains your project file, run dotnet restore to install the package.

Visual Studio

  1. Go to Tools -> NuGet Package Manager -> Manage NuGet Packages for Solution... in Visual Studio, to upgrade Umbraco UI Builder:

  2. Select Umbraco.UIBuilder.

  3. Select the latest version from the Version drop-down and click Install.

  4. When the command completes, open the .csproj file to make sure the package reference is updated:

<ItemGroup>
  <PackageReference Include="Umbraco.UIBuilder" Version="xx.x.x" />
</ItemGroup>

If you are using one or more of the below sub-packages, they also need to be upgraded as well:

Sub-package
Description

Umbraco.UIBuilder.Core

Core UI Builder functionality that doesn't require any infrastructure-specific dependencies

Umbraco.UIBuilder.Infrastructure

Infrastructure-specific project containing implementations of core UI Builder functionality

Umbraco.UIBuilder.Web

The core UI Builder logic that requires a web context

Umbraco.UIBuilder.Web.StaticAssets

The static assets for the UI Builder presentation layer

Umbraco.UIBuilder.Startup

The main logic for registering UI Builder with Umbraco

Umbraco.UIBuilder

The main UI Builder package

version specific upgrade