Skip to content

Commit

Permalink
Update docs gen
Browse files Browse the repository at this point in the history
  • Loading branch information
MrHinsh committed Aug 20, 2024
1 parent 135efcc commit e24988b
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 11 deletions.
17 changes: 11 additions & 6 deletions docs/Reference/Generated/MigrationTools.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ configurationSamples:
"Enabled": false,
"WIQLQuery": "Select [System.Id] From WorkItems Where [System.TeamProject] = @project and not [System.WorkItemType] contains 'Test Suite, Test Plan,Shared Steps,Shared Parameter,Feedback Request'",
"TargetLinksToKeepOrganization": "https://dev.azure.com/nkdagility",
"TargetLinksToKeepProject": "caa56a36-4a17-470f-b66e-0a0830039398",
"TargetLinksToKeepProject": "24cc0d42-d2c4-46ec-9116-6dfcf1a5d12c",
"CleanupFileName": "c:/temp/OutboundLinkTargets.bat",
"PrependCommand": "start",
"DryRun": true,
Expand Down Expand Up @@ -45,7 +45,7 @@ configurationSamples:
"Enabled": false,
"WIQLQuery": "Select [System.Id] From WorkItems Where [System.TeamProject] = @project and not [System.WorkItemType] contains 'Test Suite, Test Plan,Shared Steps,Shared Parameter,Feedback Request'",
"TargetLinksToKeepOrganization": "https://dev.azure.com/nkdagility",
"TargetLinksToKeepProject": "caa56a36-4a17-470f-b66e-0a0830039398",
"TargetLinksToKeepProject": "24cc0d42-d2c4-46ec-9116-6dfcf1a5d12c",
"CleanupFileName": "c:/temp/OutboundLinkTargets.bat",
"PrependCommand": "start",
"DryRun": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ configurationSamples:
"Enabled": false,
"WIQLQuery": "Select [System.Id] From WorkItems Where [System.TeamProject] = @project and not [System.WorkItemType] contains 'Test Suite, Test Plan,Shared Steps,Shared Parameter,Feedback Request'",
"TargetLinksToKeepOrganization": "https://dev.azure.com/nkdagility",
"TargetLinksToKeepProject": "caa56a36-4a17-470f-b66e-0a0830039398",
"TargetLinksToKeepProject": "24cc0d42-d2c4-46ec-9116-6dfcf1a5d12c",
"CleanupFileName": "c:/temp/OutboundLinkTargets.bat",
"PrependCommand": "start",
"DryRun": true,
Expand Down Expand Up @@ -46,7 +46,7 @@ configurationSamples:
"Enabled": false,
"WIQLQuery": "Select [System.Id] From WorkItems Where [System.TeamProject] = @project and not [System.WorkItemType] contains 'Test Suite, Test Plan,Shared Steps,Shared Parameter,Feedback Request'",
"TargetLinksToKeepOrganization": "https://dev.azure.com/nkdagility",
"TargetLinksToKeepProject": "caa56a36-4a17-470f-b66e-0a0830039398",
"TargetLinksToKeepProject": "24cc0d42-d2c4-46ec-9116-6dfcf1a5d12c",
"CleanupFileName": "c:/temp/OutboundLinkTargets.bat",
"PrependCommand": "start",
"DryRun": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ protected FieldMapOptions()
/// <summary>
/// If set to `true` then the Fieldmap will run. Set to `false` and the processor will not run.
/// </summary>

[JsonIgnore]
public bool Enabled { get; set; }
public List<string> ApplyTo { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ namespace MigrationTools.Tools.Infrastructure
{
public interface IFieldMapOptions : IOptions
{
/// <summary>
/// A list of Work Item Types that this Field Map will apply to. If the list is empty it will apply to all Work Item Types. You can use "*" to apply to all Work Item Types.
/// </summary>
[JsonProperty(Order = -1)]
List<string> ApplyTo { get; set; }

Expand Down

0 comments on commit e24988b

Please sign in to comment.