Add SourceLink to build + fix assembly versioning (#2007)

* Add github source link

* more

* Move to common

* fix multiple dep copy

* Fix doc comment

* cleanup props

* Use GlobalPackageReference

* Set CI build property on pipelines

* Add comment
This commit is contained in:
Charles Gagnon
2023-04-17 09:51:30 -07:00
committed by GitHub
parent 4614795f19
commit 9d53e1dd3e
17 changed files with 73 additions and 292 deletions

View File

@@ -38,7 +38,9 @@ public struct ExitStatus
/// <summary>
/// Default constructor when the execution potentially timed out.
/// </summary>
/// <param name="process">The process this status is for</param>
/// <param name="cmd">The cmd/file being executed</param>
/// <param name="args">The arguments passed to the command</param>
/// <param name="exitCode">The exit code</param>
/// <param name="timeOut">True if the execution timed out</param>
public ExitStatus(string cmd, string args, int exitCode, bool timeOut = false)
{