You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: eng/common/sdl/execute-all-sdl-tools.ps1
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -22,7 +22,9 @@ Param(
22
22
[string] $TsaCodebaseAdmin,# Optional: only needed if TsaOnboard is true; the aliases which are admins of the TSA codebase (e.g. DOMAIN\alias); TSA is the automated framework used to upload test results as bugs.
23
23
[string] $TsaBugAreaPath,# Optional: only needed if TsaOnboard is true; the area path where TSA will file bugs in AzDO; TSA is the automated framework used to upload test results as bugs.
24
24
[string] $TsaIterationPath,# Optional: only needed if TsaOnboard is true; the iteration path where TSA will file bugs in AzDO; TSA is the automated framework used to upload test results as bugs.
25
-
[string] $GuardianLoggerLevel="Standard"# Optional: the logger level for the Guardian CLI; options are Trace, Verbose, Standard, Warning, and Error
25
+
[string] $GuardianLoggerLevel="Standard",# Optional: the logger level for the Guardian CLI; options are Trace, Verbose, Standard, Warning, and Error
26
+
[string[]] $CrScanAdditionalRunConfigParams,# Optional: Additional Params to custom build a CredScan run config in the format @("xyz:abc","sdf:1")
27
+
[string[]] $PoliCheckAdditionalRunConfigParams# Optional: Additional Params to custom build a Policheck run config in the format @("xyz:abc","sdf:1")
26
28
)
27
29
28
30
$ErrorActionPreference="Stop"
@@ -69,10 +71,10 @@ if ($TsaOnboard) {
69
71
}
70
72
71
73
if ($ArtifactToolsList-and$ArtifactToolsList.Count-gt0) {
///<para>Parse a source code file, returning a handle that can be used for obtaining navigation bar information
118
-
/// To get the full information, call 'CheckFileInProject' method on the result</para>
119
-
///<para>All files except the one being checked are read from the FileSystem API</para>
116
+
/// Parses a source code for a file. Returns an AST that can be traversed for various features.
120
117
///</summary>
121
118
///
122
-
///<param name="filename">The filename for the file.</param>
123
-
/// <paramname="source">The full source for the file.</param>
124
-
/// <paramname="options">The options for the project or script, used to determine active --define conditionals and other options relevant to parsing.</param>
119
+
///<param name="filename">The path for the file. The file name is also as a modulename for implicit top level modules (e.g.in scripts).</param>
120
+
/// <paramname="sourceText">The source to be parsed.</param>
121
+
/// <paramname="options">Parsing options for the project or script.</param>
122
+
/// <paramname="userOpName">An optional string used for tracing compiler operations associated with this request.</param>
/// Parses a source code for a file. Returns an AST that can be traversed for various features.
127
+
///</summary>
128
+
///
129
+
///<param name="filename">The path for the file. The file name is also as a modulename for implicit top level modules (e.g.in scripts).</param>
130
+
/// <paramname="sourceText">The source to be parsed.</param>
131
+
/// <paramname="options">Parsing options for the project or script.</param>
125
132
/// <paramname="userOpName">An optional string used for tracing compiler operations associated with this request.</param>
126
133
[<Obsolete("Please call checker.ParseFile instead. To do this, you must also pass FSharpParsingOptions instead of FSharpProjectOptions. If necessary generate FSharpParsingOptions from FSharpProjectOptions by calling checker.GetParsingOptionsFromProjectOptions(options)")>]
0 commit comments