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
/// Gets or sets the root folder of the drop directory for which the manifest file will be generated.
14
+
/// Gets or sets the root folder of the drop directory for which the SBOM file will be generated.
15
15
/// </summary>
16
16
[ArgShortcut("b")]
17
17
[ArgRequired(IfNot="ConfigFilePath")]
18
-
[ArgDescription("The root folder of the drop directory for which the manifest file will be generated.")]
18
+
[ArgDescription("The root folder of the drop directory for which the SBOM file will be generated.")]
19
19
publicstringBuildDropPath{get;set;}
20
20
21
21
/// <summary>
@@ -31,15 +31,17 @@ public class GenerationArgs : CommonArgs
31
31
/// by Environment.NewLine. Blank lines are discarded.
32
32
/// </summary>
33
33
[ArgShortcut("bl")]
34
-
[ArgDescription("The file path to a file containing a list of files one file per line for which the manifest file will be generated. Only files listed in the file will be inlcuded in the generated manifest.")]
34
+
[ArgDescription("The file path to a file containing a list of files one file per line for which the SBOM"+
35
+
" file will be generated. Only files listed in the file will be inlcuded in the generated SBOM.")]
35
36
publicstringBuildListFile{get;set;}
36
37
37
38
/// <summary>
38
39
/// Gets or sets the root folder where the generated manifest files as well as other files will be placed.
39
40
/// By default we will generate this folder in the same level as the build drop with the name '_manifest'.
40
41
/// </summary>
41
42
[ArgShortcut("m")]
42
-
[ArgDescription("The path of the directory where the generated manifest files will be placed."+
43
+
[ArgDescription("The path of the directory where the generated SBOM files will be placed."+
44
+
" A folder named '_manifest' will be created at this location, where all generated SBOMs will be placed."+
43
45
" If this parameter is not specified, the files will be placed in {BuildDropPath}/_manifest directory.")]
0 commit comments