Umbraco UI Builder
CMSCloudHeartcoreDXP
16.latest
16.latest
  • Umbraco UI Builder Documentation
  • Known Issues
  • Release Notes
  • Getting Started
    • Requirements
    • Installing Umbraco UI Builder
    • Licensing
    • Configuration
    • User Interface
  • Upgrading
    • Upgrading Umbraco UI Builder
    • Version Specific Upgrade Notes
    • Migrate from Konstrukt to Umbraco UI Builder
  • 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
      • Retrieve Child Collections
    • Related Collections
    • Entity Identifier Converters
  • 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
  • Upgrade Sub-Packages

Was this helpful?

Edit on GitHub
Export as PDF
  1. Upgrading

Upgrading Umbraco UI Builder

Learn how to manually upgrade Umbraco UI Builder to the latest version.

This article explains how to manually upgrade Umbraco UI Builder to the latest version. Before upgrading Umbraco UI Builder, see the Version Specific Upgrade Notes for potential breaking changes and common pitfalls.

Before upgrading, take a complete backup of your site and database.

Get the latest version of Umbraco UI Builder

To get the latest version of Umbraco UI Builder, you can upgrade using either of the two options:

  • NuGet

  • Visual Studio

NuGet

  • To install the latest version via NuGet:

dotnet add package Umbraco.UIBuilder
  • To specify a package version:

dotnet add package Umbraco.UIBuilder --version <VERSION>
  • After adding the package reference, restore dependencies:

dotnet restore

Visual Studio

  1. Open Visual Studio.

  2. Navigate to Tools -> NuGet Package Manager -> Manage NuGet Packages for Solution....

  3. Select Umbraco.UIBuilder.

  4. Choose the latest version from the drop-down and click Install.

  5. After installation, verify the update in your .csproj file:

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

Upgrade Sub-Packages

If you are using any of the following sub-packages, upgrade them as well:

Sub-package
Description

Umbraco.UIBuilder.Core

Core functionality without infrastructure dependencies

Umbraco.UIBuilder.Infrastructure

Infrastructure-specific implementations

Umbraco.UIBuilder.Web

Core logic requiring a web context

Umbraco.UIBuilder.Web.StaticAssets

Static assets for the presentation layer

Umbraco.UIBuilder.Startup

Registers UI Builder with Umbraco

Umbraco.UIBuilder

The main UI Builder package

PreviousUser InterfaceNextVersion Specific Upgrade Notes

Last updated 2 months ago

Was this helpful?