Installing to a project
StarMicronics.CloudPRNT-Utility is provided as a NuGet package, and can be installed via the Visual Studio NuGet UI, the nuget command line utility, or dotnet command line utility.
Warning
As a sample release, the StarMicronics.CloudPRNT-Utility package is available only through a Star NuGet package feed, and not via nuget.org. It will be necessary to add this feed to your package or development environment before you can install, see instructions below.
Star Package Feed
At this time, this SDK is a sample release and the API may change. Therefore the package is available via a Star specific package feed instead of nuget.org. Once the API is stable, it will be available through nuget.org, but at this time please add the custom package feed:
http://star.baget.gfdt.ml/v3/index.json
Installing with Visual Studio
- In the "Solution Explorer" panel, right click on your project, and select "Manage NuGet packages..." to display the NuGet dialog.
- For sample releases versions, please add the Star package feed (if not already added), and select it as the package source.
- Click on "Browse"
- In the Search Area, type "StarMicronics.CloudPRNT-Utility" to locate the package.
- Select the version required (latest is recommended)
- Click "Install"
This will install the package, and its dependencies to your project. Provided you project meets the compatibility requirements for .NET Standard 2.0 (meaning it must be based on at least .NET Framework 4.6.1, or .NET Core 2.0 or later).
Installing with the dotnet command
Customers developing a .NET Core server or application may not be running Visual Studio, but have access to project management functions through the dotnet command line utility.
- For sample releases, please add the Star package feed to you list of NuGet feeds. The exact method varies between operating systems, on Linux it can be handled by editing the ~/.nuget/NuGet/NuGet.config XML file.
- Open a terminal, and 'cd' into the project folder (the folder in which the .csproj file exists for your project).
- use the dotnet command to add the package:
dotnet add package StarMicronics.CloudPRNT-Utility
This will install the API package and dependencies, provided your project is targeting a .NET implementation that is compatible with .NET Standard 2.0.