The SeaLights .NET agent can scan the binaries after the build process to gather the build structure.

Generating a session ID

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

dotnet ./sl-dotnet-agent/SL.DotNet.dll  config --appName "myApp" --branchName "master" --buildName  $BUILD_VERSION --includeNamespace myNameSpace.* --buildSessionIdFile buildSessionId.txt
POWERSHELL

The buildName parameter above should reflect a meaningful versioning of your service or application.
In some cases, you can use timestamps as well, via commands like `date date +"%y%m%d_%H%M"` (Linux) or $(Get-Date -Format "yyyyMMdd_HHmm") (Powershell)

Scanning the binaries

Run the scan of your binaries using the SeaLights agent with the following command:

dotnet ./sl-dotnet-agent/SL.DotNet.dll scan --buildSessionIdFile buildSessionId.txt --workspacePath c:\path\to\binaries --ignoreGeneratedCode true
CODE

The workspacePath folder must contain all the project’s PDB files.

As SeaLights is using the compilation method's bytecode signature (Hash ID) to generate a unique identifier for each method, it is important NOT to recompile the application between the scan command and the deployment.
The scanned build's artefact (DLL, EXE) MUST be from the exact same compilation as the one deployed.

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