# Upgrading Umbraco Workflow

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

{% hint style="info" %}
If you are migrating from Plumber to Umbraco Workflow, see the [Migrate from Plumber to Workflow](https://docs.umbraco.com/umbraco-workflow/upgrading/migrating-workflow) article.
{% endhint %}

## Get the latest version of Umbraco Workflow

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

* [NuGet](#nuget)
* [Visual Studio](#visual-studio)

### NuGet

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

  `dotnet add package Umbraco.Workflow --version <VERSION>`
* 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 Workflow:
* Select **Umbraco.Workflow**.
* Select the latest version from the **Version** drop-down and click **Install**.

  ![NuGet Package Manager](https://2308063626-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FihjXeb5EgYW8vXPfbxLI%2Fuploads%2Fgit-blob-ae250a8d574717ff2d3db5c1bf7095af6b4a3af9%2FVS_Installation-v14.png?alt=media)
* Open the **.csproj** file to make sure the package reference is updated:

  ```xml
  <ItemGroup>
    <PackageReference Include="Umbraco.Workflow" Version="14.x.x" />
  </ItemGroup>
  ```
