Internet Explorer is no longer supported. Many things will still work, but your experience will be degraded and some things won't function. Please use a modern browser such as Edge, Chrome, or Firefox.

Get Build

view on GitHub

Get Build is available as both a pgutil command and an HTTP Request, and will return info on a single build.

Command Specification (CLI)

The builds info command is used to get information on a build of a project.

The --project and --build options are always required.

Getting information on a build requires the project name (e.g. myProject) and the build number (e.g 1.2.3)

pgutil builds info --build=1.2.3 --project=myProject 

Example output:

Build 1.2.3
Packages:
  pkg:nuget/CsvHelper@30.0.1
  pkg:nuget/Newtonsoft.Json@12.0.3
  pkg:nuget/Polly@7.2.3
Comments:
1 - This is a comment
2 - This is another comment.

HTTP Request Specification

To return a specified build, simply GET to the URL with the project name, build version, and an appropriate API Key.

GET /api/sca/releases?project=«projectName»&version=«versionNumber»

HTTP Response Specification

A BuildInfo.cs object will be returned on a successful 200 response. A 403 response indicates a missing, unknown, or unauthorized API Key.