We have moved!

You are currently looking at documentation for Umbraco 8 and older versions.
An automated guess is that docs.umbraco.com/umbraco-cms/add-ons/umbraco-plumber/upgrading-plumber/ could be the link to the new documentation for Umbraco 9 and newer versions.

    Upgrading Umbraco Plumber

    This article shows how to manually upgrade Umbraco Plumber to run the latest version. Umbraco Plumber displays a prompt in the Workflow section when a new version is available.

    Get the latest version of Umbraco Plumber

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

    NuGet

    NuGet installs the latest version of the package when you use the dotnet add package Plumber.Workflow command unless you specify a package version:

    dotnet add package Plumber.Workflow --version <VERSION>

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

    Visual Studio

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

    • Select Plumber.Workflow.

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

      NuGet Package Manager

    • Open the .csproj file to make sure the package reference is updated:

      <ItemGroup>
        <PackageReference Include="Plumber.Workflow" Version="10.x.x" />
      </ItemGroup>