.NET tools installation
To use the .NET tools, you must have the .NET 8 SDK installed on your computer. To verify your installation, run the following command:
dotnet --list-sdks
Install .NET tools
You can install .NET tools either system-wide or locally in a specific directory (for example, in a project or customer directory).
The .NET tools are installed at the path specified in the following table, depending on your operating system.
|
Operating system |
Path |
|---|---|
|
Windows |
|
|
Linux/macOS |
|
To install the .NET tools, run the following command:
dotnet tool install --global --add-source https://nuget.sitecore.com/resources/v3/index.json ch-one-cli
To verify the installation was successful, run the following command:
ch-one-cli
Update .NET tools
To update the .NET tools, run the following command:
dotnet tool update --global --add-source https://nuget.sitecore.com/resources/v3/index.json ch-one-cli
Uninstall the .NET tools
To uninstall the .NET tools, run the following command:
dotnet tool uninstall --global ch-one-cli