A change in Umbraco v10 from earlier versions is that it now only supports NuGet packages and so this is the only way Vendr for v10 can be installed.
NuGet Package Installation
Vendr is also available via NuGet.Org.
To install Vendr via NuGet you can run the following command directly in the NuGet Manager Console window:
PM> dotnet add package Vendr
Alternatively, you can also find and install the NuGet package via the NuGet Package Manager GUI. You will see a number of packages available, however you will want to install the main Vendr package.
For most basic sites using a single solution/project, this should be all you need to install Vendr into your project. If you have a more complex solution structure however, consisting of multiple projects, Vendr is available in multiple sub-packages with varying dependencies.
- Vendr.Common A shared project of common, non Vendr specific patterns and helpers.
- Vendr.Core The core Vendr functionality that doesn't require any infrastructure specific dependencies.
- Vendr.Infrastructure Infrastructure specific project containing implementations of core Vendr functionality.
- Vendr.Persistence Persistence specific project containing implementations of core Vendr persistence functionality.
- Vendr.Persistence.SqlServer Persistence specific project containing implementations of core Vendr persistence functionality for SQL Server.
- Vendr.Persistence.Sqllite Persistence specific project containing implementations of core Vendr persistence functionality for SQLite.
- Vendr.Web The core Vendr functionality that requires a web context.
- Vendr.Umbraco The Vendr functionality that requires an Umbraco dependency.
- Vendr.Umbraco.Web The Vendr functionality for the Umbraco presentation layer.
- Vendr.Umbraco.Web.UI The static Vendr assets for the Umbraco presentation layer.
- Vendr.Umbraco.Startup The Vendr functionality for registering Vendr with Umbraco.
- Vendr The main Vendr package entry point package.
Upgrading
Vendr uses Umbraco Migrations to install all of it's features meaning upgrades follow the exact same process as the installation processes detailed above, installing the latest version of a package over the top of the existing package installation. Vendr is then clever enough to detect the current state of your site and only install the features that are missing.
Installing a License
Once you have purchased a license you can install it by dropping the license file directly into your sites umbraco\Licenses
folder. Vendr will automatically scan this directory for any valid licenses.
If you need to store your licenses in an alternative directory, you can change where Vendr looks for licenses by setting a Vendr.Licensing.LicensesDirectory
app setting with a path to the alternative location.