Skip to content

Commit be0df48

Browse files
committed
TfsChangeSetMappingToolOptions.ChangeSetMappingFile add missing comment
1 parent 910e831 commit be0df48

File tree

4 files changed

+14
-12
lines changed

4 files changed

+14
-12
lines changed

docs/data/classes/reference.tools.tfschangesetmappingtool.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ typeName: Tools
4949
options:
5050
- parameterName: ChangeSetMappingFile
5151
type: String
52-
description: missing XML code comments
53-
defaultValue: missing XML code comments
52+
description: Path to changeset mapping file.
53+
defaultValue: null
5454
isRequired: false
5555
dotNetType: System.String, System.Private.CoreLib, Version=8.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e
5656
- parameterName: Enabled

docs/static/schema/configuration.schema.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2251,8 +2251,9 @@
22512251
"default": "true"
22522252
},
22532253
"ChangeSetMappingFile": {
2254-
"description": "missing XML code comments",
2255-
"type": "string"
2254+
"description": "Path to changeset mapping file.",
2255+
"type": "string",
2256+
"default": "null"
22562257
}
22572258
}
22582259
},

docs/static/schema/schema.tools.tfschangesetmappingtool.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@
66
"type": "object",
77
"properties": {
88
"ChangeSetMappingFile": {
9-
"description": "missing XML code comments",
10-
"type": "string"
9+
"description": "Path to changeset mapping file.",
10+
"type": "string",
11+
"default": "null"
1112
},
1213
"Enabled": {
1314
"description": "If set to `true` then the tool will run. Set to `false` and the processor will not run.",
Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
using System;
2-
using MigrationTools.Enrichers;
3-
using MigrationTools.Tools.Infrastructure;
1+
using MigrationTools.Tools.Infrastructure;
42

53
namespace MigrationTools.Tools
64
{
75
public class TfsChangeSetMappingToolOptions : ToolOptions
86
{
9-
7+
/// <summary>
8+
/// Path to changeset mapping file.
9+
/// </summary>
10+
/// <default>null</default>
1011
public string ChangeSetMappingFile { get; set; }
11-
1212
}
13-
}
13+
}

0 commit comments

Comments
 (0)