Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1999508 DTS [Pipelines Agents Tasks UI]: Problem with the "Publish to Azure Service Bus" task in DevOps release pipeline #17686

Merged
merged 1 commit into from
Jan 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"loc.friendlyName": "Publish To Azure Service Bus",
"loc.helpMarkDown": "[More Information](https://go.microsoft.com/fwlink/?linkid=870237)",
"loc.helpMarkDown": "[Learn more about this task](https://go.microsoft.com/fwlink/?linkid=870237)",
"loc.description": "Sends a message to Azure Service Bus using a service connection (no agent is required)",
"loc.instanceNameFormat": "Publish to Azure Service Bus",
"loc.group.displayName.advancedProperties": "Advanced",
Expand All @@ -17,5 +17,7 @@
"loc.input.label.signatureKey": "Signature Property Key",
"loc.input.help.signatureKey": "Key where you want signature to be in Message Properties. If left Empty, default is 'signature' in message properties",
"loc.input.label.waitForCompletion": "Wait for task completion",
"loc.input.help.waitForCompletion": "If this is true, this task will wait for TaskCompleted event for the specified task timeout."
"loc.input.help.waitForCompletion": "If this is true, this task will wait for TaskCompleted event for the specified task timeout.",
"loc.input.label.useDataContractSerializer": "Use .NET data contract serailizer",
"loc.input.help.useDataContractSerializer": "For more details go to task documentation"
}
11 changes: 10 additions & 1 deletion Tasks/PublishToAzureServiceBusV1/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"author": "Microsoft Corporation",
"version": {
"Major": 1,
"Minor": 198,
"Minor": 217,
"Patch": 0
},
"groups": [
Expand Down Expand Up @@ -97,6 +97,14 @@
"defaultValue": "false",
"required": true,
"helpMarkDown": "If this is true, this task will wait for TaskCompleted event for the specified task timeout."
},
{
"name": "useDataContractSerializer",
"type": "boolean",
"label": "Use .NET data contract serailizer",
"required": true,
"defaultValue": "true",
"helpMarkDown": "For more details go to task documentation"
}
],
"instanceNameFormat": "Publish to Azure Service Bus",
Expand All @@ -115,6 +123,7 @@
"sessionId": "$(sessionId)",
"certificateString": "{{#notEquals signPayload 'false' 1}}{{#notEquals endpoint.signPayload 'false' 1}}$(certificateString){{/notEquals}}{{else}}{{/notEquals}}",
"signaturePropertyKey": "$(signatureKey)",
"useDataContractSerializer": "$(useDataContractSerializer)",
"messageProperties": {
"PlanUrl": "$(system.CollectionUri)",
"ProjectId": "$(system.TeamProjectId)",
Expand Down
11 changes: 10 additions & 1 deletion Tasks/PublishToAzureServiceBusV1/task.loc.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"author": "Microsoft Corporation",
"version": {
"Major": 1,
"Minor": 198,
"Minor": 217,
"Patch": 0
},
"groups": [
Expand Down Expand Up @@ -97,6 +97,14 @@
"defaultValue": "false",
"required": true,
"helpMarkDown": "ms-resource:loc.input.help.waitForCompletion"
},
{
"name": "useDataContractSerializer",
"type": "boolean",
"label": "ms-resource:loc.input.label.useDataContractSerializer",
"required": true,
"defaultValue": "true",
"helpMarkDown": "ms-resource:loc.input.help.useDataContractSerializer"
}
],
"instanceNameFormat": "ms-resource:loc.instanceNameFormat",
Expand All @@ -115,6 +123,7 @@
"sessionId": "$(sessionId)",
"certificateString": "{{#notEquals signPayload 'false' 1}}{{#notEquals endpoint.signPayload 'false' 1}}$(certificateString){{/notEquals}}{{else}}{{/notEquals}}",
"signaturePropertyKey": "$(signatureKey)",
"useDataContractSerializer": "$(useDataContractSerializer)",
"messageProperties": {
"PlanUrl": "$(system.CollectionUri)",
"ProjectId": "$(system.TeamProjectId)",
Expand Down