Skip to content

02 Installation

David Sheiles edited this page Nov 27, 2025 · 2 revisions

Installation Guide

This guide covers the installation process for Meta Momentum in your Umbraco project.

Requirements

  • Umbraco 14.0 or higher (up to 17.x)
  • .NET 8 or higher
  • NuGet Package Manager

Version Compatibility

Umbraco Version Meta Momentum Version .NET Version
8.x - 13.x 1.x - 2.x .NET Framework / .NET 5-6
14.x - 16.x 3.x .NET 8 - 9
17.x 3.x .NET 10

Installation Steps

Step 1: Install NuGet Package

Via Package Manager Console

Install-Package MetaMomentum

Via .NET CLI

dotnet add package MetaMomentum

Via Visual Studio NuGet Package Manager

  1. Right-click on your project in Solution Explorer
  2. Select Manage NuGet Packages
  3. Search for MetaMomentum
  4. Click Install

Step 2: Verify Installation

After installation, build your project to ensure the package is properly installed

The package should appear in your project's dependencies.

Next Steps

After installation:

  1. Configure a Data Type
  2. Implement in your views
  3. Set up Tag Helpers

Pre-Release Versions

To install pre-release versions from MyGet:

  1. Add the MyGet feed to your NuGet sources: https://www.myget.org/F/digital-momentum/api/v3/index.json
  2. Enable Include prerelease when searching for the package
  3. Install the pre-release version

Note: Pre-release versions are tested but may contain bugs. Use in production at your own risk.

Troubleshooting Installation

For additional help, open an issue on GitHub.

Clone this wiki locally