Install as .NET tool

This install method is available for machines with .NET SDK 6 or higher (including .NET 7, .NET 8, .NET 9) installed regardless of whether the BDD project uses .NET or whether it uses .NET Core. Other installation options available.

The most convenient way to use SpecSync is to install it as a .NET tool. While .NET tools require .NET 6, 7, 8 SDK or .NET 9 SDK to be installed, that can be installed to any platforms, including Linux and macOS. It also supports execution in Docker containers. .NET 9 SDK can be installed from the .NET Download page. We recommend installing the latest .NET SDK.

SpecSync can be installed as .NET tool, even if the project does not use .NET (e.g. uses Cucumber Java) or if it uses a different version of .NET (e.g. .NET Framework v4.7).

SpecSync should be installed as a local .NET tool (.NET tools can also be installed globally for the machine, but that is more suitable for general, non project specific tools). By installing as local tool, you can use different SpecSync versions for different projects and the required SpecSync version is registered in the project repository. You can read more about .NET local tools on Microsoft Docs.

Video tutorial about installing SpecSync as a .NET tool

Step 1: Initialize .NET local tool configuration (if needed)

If you haven't used any .NET local tool in your project, you need to create the necessary configuration file. Otherwise this step can be skipped.

For initializing the configuration files, you need to run the dotnet new tool-manifest command from the solution or repository root directory.

dotnet new tool-manifest

This command creates a manifest file named dotnet-tools.json under the .config directory. This file should be added to source control so that all other members of the team can use the same tools.

Step 2: Install SpecSync as a .NET local tool

Once the .NET local tool configuration is initialized SpecSync can be easily installed using the dotnet tool install command. This will download and install the latest version of SpecSync from NuGet.org.

dotnet tool install SpecSync.Jira

Step 3: Verify installation

SpecSync is ready to run using the dotnet specsync command. You can test the installation by checking the installed SpecSync version.

dotnet specsync version

If the correct version number is displayed, you are ready to move on to setup and configure SpecSync for the first synchronization. Check the Setup and Configure page for the details.

Step 4: Restore SpecSync for other people working with your project

To be able to use the .NET local tools you have installed by other members of the same project, they need to "restore" the installed tools. This can be performed using the dotnet tool restore command, that restores all .NET local tools of the project. See more information about this command on Microsoft Docs.

The same command should be performed in build servers when SpecSync is integrated to the CI pipeline.

dotnet tool restore

Upgrading SpecSync .NET tool

There are several ways to upgrade SpecSync if it was installed as a .NET tool. The most simple way is to use the dotnet tool update command. See more information about this command on Microsoft Docs.

The following command upgrades SpecSync to the latest release version.

dotnet tool update SpecSync.Jira

You can also upgrade SpecSync to a specific version using the --version option.

dotnet tool update SpecSync.Jira --version 1.1.1

To be able to upgrade to a preliminary version, you always need to specify the exact version number explicitly using the --version option.

Last updated

Was this helpful?