Skip to content

Commit d21b774

Browse files
committed
Fix various XML comments
1 parent 308a0e5 commit d21b774

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

src/MigrationTools.Clients.AzureDevops.Rest/Processors/AzureDevOpsPipelineProcessor.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,9 @@ private IEnumerable<DefinitionType> FilterOutExistingDefinitions<DefinitionType>
150150
/// <summary>
151151
/// Filter incompatible TaskGroups
152152
/// </summary>
153-
/// <param name="filteredTaskGroups"></param>
153+
/// <param name="sourceDefinitions"></param>
154154
/// <param name="availableTasks"></param>
155+
/// <param name="taskGroupMapping"></param>
155156
/// <returns>List of filtered Definitions</returns>
156157
private IEnumerable<BuildDefinition> FilterOutIncompatibleBuildDefinitions(IEnumerable<BuildDefinition> sourceDefinitions, IEnumerable<TaskDefinition> availableTasks, IEnumerable<Mapping> taskGroupMapping)
157158
{

src/MigrationTools.Clients.TfsObjectModel/Processors/TfsExportUsersForMappingProcessorOptions.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,11 @@ public class TfsExportUsersForMappingProcessorOptions : ProcessorOptions
1010

1111
public string WIQLQuery { get; set; }
1212

13-
/// `OnlyListUsersInWorkItems`
13+
/// <summary>
14+
/// `OnlyListUsersInWorkItems`
1415
/// </summary>
1516
/// <default>true</default>
1617
public bool OnlyListUsersInWorkItems { get; set; } = true;
1718

1819
}
19-
}
20+
}

src/MigrationTools.Clients.TfsObjectModel/Tools/TfsNodeStructureTool.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -480,6 +480,7 @@ private void ProcessCommonStructure(string treeTypeSource, string localizedTreeT
480480
/// Checks node-to-be-created with allowed BasePath's
481481
/// </summary>
482482
/// <param name="userFriendlyPath">The user-friendly path of the source node</param>
483+
/// <param name="nodeStructureType"></param>
483484
/// <returns>true/false</returns>
484485
private bool ShouldCreateNode(string userFriendlyPath, TfsNodeStructureType nodeStructureType)
485486
{

src/MigrationTools.Host/Commands/CommandBase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ public void RunStartupLogic(TSettings settings)
183183
}
184184
else
185185
{
186-
/// not online or you have specified not to
186+
// not online or you have specified not to
187187
Log.Warning("You are either not online or have chosen `skipVersionCheck`. We will not check for a newer version of the tools.", _detectVersionService.PackageId);
188188
}
189189
}

0 commit comments

Comments
 (0)