Installing the DT Command-line Tool

The ScaleOut dt command-line utility is a .NET tool that simplifies the packaging and deployment of digital twin projects for execution on ScaleOut StreamServer®.

Prerequisites

.NET 6 SDK (or higher)

Installation

To install the dt tool from NuGet, run the following command:

dotnet tool install -g Scaleout.DigitalTwin.Cli

Note

The -g flag installs the tool globally for the user. If omitted, the tool will be installed as a local tool for the current directory. See dotnet tool install for more information.

Updating to the Latest Release

To update your current release of the dt tool, run the following command:

dotnet tool update -g Scaleout.DigitalTwin.Cli

Note

Omit the -g flag if the tool was installed to the local folder.

Uninstall

To uninstall the dt tool, run the following command:

dotnet tool uninstall -g Scaleout.DigitalTwin.Cli

Note

Omit the -g flag if the tool was installed to the local folder.