From 07d7be9d3c172e9aab681bb6d3fa2a012e4bb75b Mon Sep 17 00:00:00 2001 From: RobiNino Date: Tue, 18 Jun 2024 15:36:15 +0300 Subject: [PATCH] CR comments --- tasks/JFrogDotnet/task.json | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tasks/JFrogDotnet/task.json b/tasks/JFrogDotnet/task.json index c3b91329..1020e309 100644 --- a/tasks/JFrogDotnet/task.json +++ b/tasks/JFrogDotnet/task.json @@ -47,8 +47,7 @@ "name": "customCommand", "type": "string", "label": "Custom command", - "defaultValue": "", - "helpMarkDown": "The custom command which will be passed to .NET Core CLI for execution. Note that commands that require deploying are not supported, and that build-info collection is not available for custom commands.", + "helpMarkDown": "The custom command which will be passed to .NET Core CLI for execution (for example: 'pack'). Note that commands that require deployment are not supported, and that build-info collection is not available for custom commands.", "required": true, "visibleRule": "command=custom" }, @@ -57,7 +56,7 @@ "type": "string", "label": "Arguments", "defaultValue": "", - "helpMarkDown": "The arguments which will be passed to .NET Core CLI for execution. Arguments should be quoted, and space separated.", + "helpMarkDown": "The arguments which will be passed to .NET Core CLI for execution (for example: '--no-restore' '--v:d'). Arguments should be quoted, and space separated.", "required": false, "visibleRule": "command=restore || command=custom" },