Umbraco Commerce
CMSCloudHeartcoreDXP
15.latest
15.latest
  • Umbraco Commerce Documentation
  • Release Notes
    • v15.1.0-Rc
    • v15.0.0-Rc
  • Commerce Products
    • Commerce Packages
    • Commerce Payment Providers
    • Commerce Shipping Providers
  • Getting Started
    • Requirements
    • Installation
    • Licensing
    • Configuration
    • User Interface
  • Upgrading
    • Upgrading Umbraco Commerce
    • Version Specific Upgrade Notes
    • Migrate from Vendr to Umbraco Commerce
      • Migrate Umbraco Commerce Checkout
      • Migrate custom Payment Providers
  • Tutorials
    • Build a Store in Umbraco using Umbraco Commerce
      • Installation
      • Creating a Store
        • Configuring your Store
      • Creating your first Product
      • Implementing a Shopping Cart
        • Using the Umbraco.Commerce.Cart Drop-in Shopping Cart
        • Creating a Custom Shopping Cart
      • Implementing a Checkout Flow
        • Using the Umbraco.Commerce.Checkout Drop-in Checkout Flow
        • Creating a Custom Checkout Flow
      • Configuring Store Access Permissions
  • How-To Guides
    • Overview
    • Configure SQLite support
    • Use an Alternative Database for Umbraco Commerce Tables
    • Customizing Templates
    • Configuring Cart Cleanup
    • Limit Order Line Quantity
    • Implementing Product Bundles
    • Implementing Member Based Pricing
    • Implementing Dynamically Priced Products
    • Implementing Personalized Products
    • Implementing a Currency Switcher
    • Building a Members Portal
    • Order Number Customization
    • Create an Order via Code
  • Key Concepts
    • Get to know the main features
    • Base Currency
    • Calculators
    • Currency Exchange Rate Service Provider
    • Dependency Injection
    • Discount Rules / Rewards
    • Events
      • List of validation events
      • List of notification events
    • Fluent API
    • Order Calculation State
    • Payment Forms
    • Payment Providers
    • Pipelines
    • Price/Amount Adjustments
    • Price Freezing
    • Product Adapters
    • Product Bundles
    • Product Variants
      • Complex Variants
    • Properties
    • ReadOnly and Writable Entities
    • Sales Tax Providers
    • Search Specifications
    • Settings Objects
    • Shipping Package Factories
    • Shipping Providers
    • Shipping Range/Rate Providers
    • Tax Sources
    • UI Extensions
      • Analytics Widgets
      • Entity Quick Actions
      • Order Line Actions
      • Order Properties
      • Order Collection Properties
      • Order Line Properties
      • Store Menu Items
    • Umbraco Properties
    • Unit of Work
    • Umbraco Commerce Builder
    • Webhooks
  • Reference
    • Stores
    • Shipping
      • Fixed Rate Shipping
      • Dynamic Rate Shipping
      • Realtime Rate Shipping
    • Payments
      • Configure Refunds
      • Issue Refunds
    • Taxes
      • Fixed Tax Rates
      • Calculated Tax Rates
    • Storefront API
      • Endpoints
        • Order
        • Checkout
        • Product
        • Customer
        • Store
        • Currency
        • Country
        • Payment method
        • Shipping method
        • Content
    • Management API
    • Go behind the scenes
    • Telemetry
Powered by GitBook
On this page
  • Prerequisites
  • Umbraco Commerce Installation
  • NuGet Package Installation
  • Visual Studio Installation
  • Installing a License
  • Using Umbraco Commerce

Was this helpful?

Edit on GitHub
Export as PDF
  1. Getting Started

Installation

Learn the steps needed in order to install Umbraco Commerce into your Umbraco CMS website.

PreviousRequirementsNextLicensing

Last updated 8 months ago

Was this helpful?

In this article, you will learn how to install Umbraco Commerce into your Umbraco CMS implementation.

Prerequisites

For system requirements, see the article.

Umbraco Commerce Installation

There are different ways to install Umbraco Commerce:

NuGet Package Installation

Umbraco Commerce is available via .

To install Umbraco Commerce via NuGet:

  1. Run the following command in the NuGet Manager Console window:

    dotnet add package Umbraco.Commerce
  2. Restart the application using the following command:

    dotnet run

Visual Studio Installation

To install via Visual Studio, follow these steps:

  1. Open your project in Visual Studio.

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

  3. Browse for Umbraco.Commerce.

  4. Select the appropriate version from the Version drop-down depending on the Umbraco version you are using.

  5. Click Install.

  6. Ensure that the package reference is added to the .csproj file once the installation is complete:

    <ItemGroup>
    <PackageReference Include="Umbraco.Commerce" Version="14.x.x" />
    </ItemGroup>

For most projects, you only need a single package to install Umbraco Commerce. But if your solution is more complex with multiple projects, Umbraco Commerce provides sub-packages to match different dependencies.

Sub-package
Description

Umbraco.Commerce.Common

A shared project of common, non-Commerce-specific patterns and helpers.

Umbraco.Commerce.Core

Core Commerce functionality that doesn't require any infrastructure-specific dependencies.

Umbraco.Commerce.Infrastructure

Infrastructure-specific project containing implementations of core Commerce functionality.

Umbraco.Commerce.Persistence.SqlServer

Persistence-specific project containing implementations of core Commerce persistence functionality for SQL Server.

Umbraco.Commerce.Persistence.Sqllite

Persistence-specific project containing implementations of core Commerce persistence functionality for SQLite.

Umbraco.Commerce.Web

Core Commerce functionality that requires a web context.

Umbraco.Commerce.Cms

Core Commerce functionality that requires an Umbraco dependency.

Umbraco.Commerce.Cms.Web

The Commerce functionality for the Umbraco presentation layer.

Umbraco.Commerce.Cms.Web.Api

A shared project of common API specific functionality.

Umbraco.Commerce.Cms.Web.Api.Management

The backoffice Management API layer.

Umbraco.Commerce.Cms.Web.Api.Payment

The Payment handling API layer.

Umbraco.Commerce.Cms.Web.Api.Storefront

The frontend Storefront API layer.

Umbraco.Commerce.Cms.Web.UI

The static Commerce assets for the Umbraco presentation layer.

Umbraco.Commerce.Cms.Startup

The Commerce functionality for registering Commerce with Umbraco.

Umbraco.Commerce

The main Commerce package entry point package.

Installing a License

Using Umbraco Commerce

If you encounter an SQLite error after installing Umbraco Commerce, you may need to enable SQLite support. For more information, see the article.

For details on how to install a license, see the article.

Once Umbraco Commerce is installed, you can find it in the Umbraco backoffice under the Settings and Content sections. To access the Commerce section, additional configuration is required. For more details, see the article.

Configure SQLite support
Licensing
Configuration
Requirements
NuGet.Org
NuGet Package Installation
Visual Studio Installation
Installing Umbraco Commerce via the NuGet Package Manager