Skip to content

Commit 6b45f81

Browse files
SigtryggurOmatkoch
authored andcommitted
fix(tools): missing arguments in DotNetTasks (#1478)
1 parent a6bb807 commit 6b45f81

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

source/Nuke.Common/Tools/DotNet/DotNet.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,12 @@
187187
"type": "bool",
188188
"format": "--nologo",
189189
"help": "Run test(s), without displaying Microsoft Testplatform banner. Available since .NET Core 3.0 SDK."
190+
},
191+
{
192+
"name": "ArtifactsPath",
193+
"type": "string",
194+
"format": "--artifacts-path {value}",
195+
"help": "All build output files from the executed command will go in subfolders under the specified path, separated by project. For more information see <a href=\"https://learn.microsoft.com/en-us/dotnet/core/sdk/artifacts-output\">Artifacts Output Layout</a>. Available since .NET 8 SDK."
190196
}
191197
]
192198
}
@@ -299,6 +305,12 @@
299305
"position": -1,
300306
"customValue": true,
301307
"help": "Arguments passed to the application being run."
308+
},
309+
{
310+
"name": "ArtifactsPath",
311+
"type": "string",
312+
"format": "--artifacts-path {value}",
313+
"help": "All build output files from the executed command will go in subfolders under the specified path, separated by project. For more information see <a href=\"https://learn.microsoft.com/en-us/dotnet/core/sdk/artifacts-output\">Artifacts Output Layout</a>. Available since .NET 8 SDK."
302314
}
303315
]
304316
}
@@ -413,6 +425,12 @@
413425
"type": "bool",
414426
"format": "--nologo",
415427
"help": "Doesn't display the startup banner or the copyright message. Available since .NET Core 3.0 SDK."
428+
},
429+
{
430+
"name": "ArtifactsPath",
431+
"type": "string",
432+
"format": "--artifacts-path {value}",
433+
"help": "All build output files from the executed command will go in subfolders under the specified path, separated by project. For more information see <a href=\"https://learn.microsoft.com/en-us/dotnet/core/sdk/artifacts-output\">Artifacts Output Layout</a>. Available since .NET 8 SDK."
416434
}
417435
]
418436
}
@@ -511,6 +529,12 @@
511529
"type": "string",
512530
"format": "-bl:{value}",
513531
"help": "Generare MSBuild <a href=\"https://github.com/dotnet/msbuild/blob/main/documentation/wiki/Binary-Log.md\">binary log</a>."
532+
},
533+
{
534+
"name": "ArtifactsPath",
535+
"type": "string",
536+
"format": "--artifacts-path {value}",
537+
"help": "All build output files from the executed command will go in subfolders under the specified path, separated by project. For more information see <a href=\"https://learn.microsoft.com/en-us/dotnet/core/sdk/artifacts-output\">Artifacts Output Layout</a>. Available since .NET 8 SDK."
514538
}
515539
]
516540
}
@@ -800,6 +824,12 @@
800824
"type": "bool",
801825
"format": "--nologo",
802826
"help": "Doesn't display the startup banner or the copyright message. Available since .NET Core 3.0 SDK."
827+
},
828+
{
829+
"name": "ArtifactsPath",
830+
"type": "string",
831+
"format": "--artifacts-path {value}",
832+
"help": "All build output files from the executed command will go in subfolders under the specified path, separated by project. For more information see <a href=\"https://learn.microsoft.com/en-us/dotnet/core/sdk/artifacts-output\">Artifacts Output Layout</a>. Available since .NET 8 SDK."
803833
}
804834
]
805835
}
@@ -975,6 +1005,12 @@
9751005
"format": "/t:{value}",
9761006
"separator": ";",
9771007
"help": "<p>Build the specified targets in the project. Specify each target separately, or use a semicolon or comma to separate multiple targets, as the following example shows:<br/><c>/target:Resources;Compile</c></p><p>If you specify any targets by using this switch, they are run instead of any targets in the DefaultTargets attribute in the project file. For more information, see <a href=\"https://msdn.microsoft.com/en-us/library/ee216359.aspx\">Target Build Order</a> and <a href=\"https://msdn.microsoft.com/en-us/library/ms171463.aspx\">How to: Specify Which Target to Build First</a>.</p><p>A target is a group of tasks. For more information, see <a href=\"https://msdn.microsoft.com/en-us/library/ms171462.aspx\">Targets</a>.</p>"
1008+
},
1009+
{
1010+
"name": "ArtifactsPath",
1011+
"type": "string",
1012+
"format": "--artifacts-path {value}",
1013+
"help": "All build output files from the executed command will go in subfolders under the specified path, separated by project. For more information see <a href=\"https://learn.microsoft.com/en-us/dotnet/core/sdk/artifacts-output\">Artifacts Output Layout</a>. Available since .NET 8 SDK."
9781014
}
9791015
]
9801016
}

0 commit comments

Comments
 (0)