Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The SeaLights .NET agent can be integrated with MSBuild to scan the binary code and provide the SeaLights server with the build information.

Generating a session ID

Before running the build scan and tests, you need to create a session ID. The session ID is provided to for each step in order to link them together as one complete cycle

Code Block
languagepowershell
SL.DotNet.exe config --appName "myApp" --branchName "master" --buildName $(Get-Date "1"-Format "yyyyMMdd_HHmm") --includeNamespace myNameSpace.* --buildSessionIdFile buildSessionId.txt

Automatic setup

The SeaLights agent can automatically setup set up your MSBuild to work with the SeaLights agent.

Code Block
languagepowershell
SL.DotNet.exe prepareForMsBuild --buildSessionIdFile buildSessionId.txt --workspacePath "C:\path\to\project" --baseDir  "C:\path\to\project" --ignoreGeneratedCode true --msBuildVersion 15 --logEnabled true

This command creates a file called 'after.{SOLUTION_FILE_NAME}.targets' which sits alongside your solution file with all the needed parameters in it for the Sealights agent to be executed automatically by MSBuild.

Info

See SeaLights .NET - command reference for full parameter details.

Run MSbuild

When running MSBuild, it will identify the above file and cause our agent to come up and report the details needed from the binary files.

...