AzurePipelinesToGitHubActionsConverter icon indicating copy to clipboard operation
AzurePipelinesToGitHubActionsConverter copied to clipboard

Many comments are removed as part of serialization

Open samsmithnz opened this issue 5 years ago • 0 comments

For example:

variables:
  #PR code 
  prId: '000'
  prName: ""PR$(prId)""

serializes without the comment, to:

env:
  prId: 000
  prName: PR${{ env.prId }}

This seems to be related to https://github.com/aaubry/YamlDotNet/issues/451

samsmithnz avatar Mar 24 '20 22:03 samsmithnz