Skip to content

Commit dc5409f

Browse files
authored
Fix XML compiler errors in handcrafted modules (Azure#18173)
* Fix XML compiler errors in handcrafted modules * Update src/Automation/Automation/Model/Schedule.cs * Update src/StorageSync/StorageSync/Common/Converters/BackgroundDataDownloadActivityConverter.cs
1 parent 9dc37a6 commit dc5409f

27 files changed

+50
-50
lines changed

src/Automation/Automation/Model/Schedule.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ private bool AdvancedScheduleIsNull(Schedule schedule)
204204
/// The day of week occurrence.
205205
/// </param>
206206
/// <returns>
207-
/// The <see cref="int?"/>.
207+
/// The <see cref="int">int?</see>
208208
/// </returns>
209209
private int? GetDayOfWeekOccurrence(string dayOfWeekOccurrence)
210210
{
@@ -223,7 +223,7 @@ private bool AdvancedScheduleIsNull(Schedule schedule)
223223
/// The schedule.
224224
/// </param>
225225
/// <returns>
226-
/// The <see cref="WeeklyScheduleOptions"/>.
226+
/// The <see cref="WeeklyScheduleOptions"/>
227227
/// </returns>
228228
private WeeklyScheduleOptions CreateWeeklyScheduleOptions(Microsoft.Azure.Management.Automation.Models.Schedule schedule)
229229
{

src/RecoveryServices/RecoveryServices.Backup.Helpers/HelperUtils.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ public static List<string> GetStringListFromEnumList<T>(IList<T> enumList)
7878
/// Gets list of enum type S equivalents given the corresponding list of enums of type T.
7979
/// </summary>
8080
/// <typeparam name="T">Type of the enum whose list should be converted to list of strings.</typeparam>
81+
/// <typeparam name="S">Type of the enum whose list should be converted from list of T.</typeparam>
8182
/// <param name="enumListT">List of enums.</param>
8283
/// <returns>List of enums converted.</returns>
8384
public static List<S> EnumListConverter<T, S>(IList<T> enumListT)

src/Resources/ResourceManager/Extensions/HttpMessageExtensions.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ public static async Task<T> ReadContentAsJsonAsync<T>(this HttpResponseMessage m
5454
/// <summary>
5555
/// Reads the JSON content from the http response message.
5656
/// </summary>
57-
/// <typeparam name="T">The type of object contained in the JSON.</typeparam>
5857
/// <param name="message">The response message to be read.</param>
5958
/// <param name="rewindContentStream">Rewind content stream if set to true.</param>
6059
/// <returns>An object of type T instantiated from the response message's body.</returns>

src/StorageSync/StorageSync/Common/Converters/BackgroundDataDownloadActivityConverter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ namespace Microsoft.Azure.Commands.StorageSync.Common.Converters
2020

2121
/// <summary>
2222
/// Class BackgroundDataDownloadActivityConverter.
23-
/// Implements the <see cref="Converters.ConverterBase{PSBackgroundDataDownloadActivity, StorageSyncModels.ServerEndpointBackgroundDataDownloadActivity}" />
23+
/// Implements the <see cref="Converters.ConverterBase{PSBackgroundDataDownloadActivity, ServerEndpointBackgroundDataDownloadActivity}"
2424
/// </summary>
25-
/// <seealso cref="Converters.ConverterBase{PSBackgroundDataDownloadActivity, StorageSyncModels.ServerEndpointBackgroundDataDownloadActivity}" />
25+
/// <seealso cref="Converters.ConverterBase{PSBackgroundDataDownloadActivity, ServerEndpointBackgroundDataDownloadActivity}" />
2626
public class BackgroundDataDownloadActivityConverter : ConverterBase<PSBackgroundDataDownloadActivity, StorageSyncModels.ServerEndpointBackgroundDataDownloadActivity>
2727
{
2828
/// <summary>

src/StorageSync/StorageSync/Common/Converters/CloudEndpointChangeEnumerationActivityConverter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ namespace Microsoft.Azure.Commands.StorageSync.Common.Converters
2020

2121
/// <summary>
2222
/// Class CloudEndpointChangeEnumerationActivityConverter.
23-
/// Implements the <see cref="Microsoft.Azure.Commands.StorageSync.Common.Converters.ConverterBase{Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpointChangeEnumerationActivity, Microsoft.Azure.Management.StorageSync.Models.CloudEndpointChangeEnumerationActivity}" />
23+
/// Implements the <see cref="Microsoft.Azure.Commands.StorageSync.Common.Converters.ConverterBase{PSCloudEndpointChangeEnumerationActivity, CloudEndpointChangeEnumerationActivity}" />
2424
/// </summary>
25-
/// <seealso cref="Microsoft.Azure.Commands.StorageSync.Common.Converters.ConverterBase{Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpointChangeEnumerationActivity, Microsoft.Azure.Management.StorageSync.Models.CloudEndpointChangeEnumerationActivity}" />
25+
/// <seealso cref="Microsoft.Azure.Commands.StorageSync.Common.Converters.ConverterBase{PSCloudEndpointChangeEnumerationActivity, CloudEndpointChangeEnumerationActivity}" />
2626
public class CloudEndpointChangeEnumerationActivityConverter : ConverterBase<PSCloudEndpointChangeEnumerationActivity, StorageSyncModels.CloudEndpointChangeEnumerationActivity>
2727
{
2828
/// <summary>

src/StorageSync/StorageSync/Common/Converters/CloudEndpointChangeEnumerationStatusConverter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ namespace Microsoft.Azure.Commands.StorageSync.Common.Converters
2020

2121
/// <summary>
2222
/// Class CloudEndpointChangeEnumerationStatusConverter.
23-
/// Implements the <see cref="Microsoft.Azure.Commands.StorageSync.Common.Converters.ConverterBase{Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpoint, Microsoft.Azure.Management.StorageSync.Models.CloudEndpoint}" />
23+
/// Implements the <see cref="Microsoft.Azure.Commands.StorageSync.Common.Converters.ConverterBase{PSCloudEndpoint, CloudEndpoint}" />
2424
/// </summary>
25-
/// <seealso cref="Microsoft.Azure.Commands.StorageSync.Common.Converters.ConverterBase{Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpoint, Microsoft.Azure.Management.StorageSync.Models.CloudEndpoint}" />
25+
/// <seealso cref="Microsoft.Azure.Commands.StorageSync.Common.Converters.ConverterBase{PSCloudEndpoint, CloudEndpoint}" />
2626
public class CloudEndpointChangeEnumerationStatusConverter : ConverterBase<PSCloudEndpointChangeEnumerationStatus, StorageSyncModels.CloudEndpointChangeEnumerationStatus>
2727
{
2828
/// <summary>

src/StorageSync/StorageSync/Common/Converters/CloudEndpointConverter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ namespace Microsoft.Azure.Commands.StorageSync.Common.Converters
2121
{
2222
/// <summary>
2323
/// Class CloudEndpointConverter.
24-
/// Implements the <see cref="Microsoft.Azure.Commands.StorageSync.Common.Converters.ConverterBase{Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpoint, Microsoft.Azure.Management.StorageSync.Models.CloudEndpoint}" />
24+
/// Implements the <see cref="Microsoft.Azure.Commands.StorageSync.Common.Converters.ConverterBase{PSCloudEndpoint, CloudEndpoint}" />
2525
/// </summary>
26-
/// <seealso cref="Microsoft.Azure.Commands.StorageSync.Common.Converters.ConverterBase{Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpoint, Microsoft.Azure.Management.StorageSync.Models.CloudEndpoint}" />
26+
/// <seealso cref="Microsoft.Azure.Commands.StorageSync.Common.Converters.ConverterBase{PSCloudEndpoint, CloudEndpoint}" />
2727
public class CloudEndpointConverter : ConverterBase<PSCloudEndpoint, StorageSyncModels.CloudEndpoint>
2828
{
2929
/// <summary>

src/StorageSync/StorageSync/Common/Converters/CloudEndpointLastChangeEnumerationStatusConverter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ namespace Microsoft.Azure.Commands.StorageSync.Common.Converters
2020

2121
/// <summary>
2222
/// Class CloudEndpointLastChangeEnumerationStatusConverter.
23-
/// Implements the <see cref="Microsoft.Azure.Commands.StorageSync.Common.Converters.ConverterBase{Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpointLastChangeEnumerationStatus, Microsoft.Azure.Management.StorageSync.Models.CloudEndpointLastChangeEnumerationStatus}" />
23+
/// Implements the <see cref="Microsoft.Azure.Commands.StorageSync.Common.Converters.ConverterBase{PSCloudEndpointLastChangeEnumerationStatus, CloudEndpointLastChangeEnumerationStatus}" />
2424
/// </summary>
25-
/// <seealso cref="Microsoft.Azure.Commands.StorageSync.Common.Converters.ConverterBase{Microsoft.Azure.Commands.StorageSync.Models.PSCloudEndpointLastChangeEnumerationStatus, Microsoft.Azure.Management.StorageSync.Models.CloudEndpointLastChangeEnumerationStatus}" />
25+
/// <seealso cref="Microsoft.Azure.Commands.StorageSync.Common.Converters.ConverterBase{PSCloudEndpointLastChangeEnumerationStatus, CloudEndpointLastChangeEnumerationStatus}" />
2626
public class CloudEndpointLastChangeEnumerationStatusConverter : ConverterBase<PSCloudEndpointLastChangeEnumerationStatus, StorageSyncModels.CloudEndpointLastChangeEnumerationStatus>
2727
{
2828
/// <summary>

src/StorageSync/StorageSync/Common/Converters/CloudTieringCachePerformanceConverter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ namespace Microsoft.Azure.Commands.StorageSync.Common.Converters
2020

2121
/// <summary>
2222
/// Class CloudTieringCachePerformanceConverter.
23-
/// Implements the <see cref="Converters.ConverterBase{PSCloudTieringCachePerformance, StorageSyncModels.CloudTieringCachePerformance}" />
23+
/// Implements the <see cref="Converters.ConverterBase{PSCloudTieringCachePerformance, CloudTieringCachePerformance}" />
2424
/// </summary>
25-
/// <seealso cref="Converters.ConverterBase{PSCloudTieringCachePerformance, StorageSyncModels.CloudTieringCachePerformance}" />
25+
/// <seealso cref="Converters.ConverterBase{PSCloudTieringCachePerformance, CloudTieringCachePerformance}" />
2626
public class CloudTieringCachePerformanceConverter : ConverterBase<PSCloudTieringCachePerformance, StorageSyncModels.CloudTieringCachePerformance>
2727
{
2828
/// <summary>

src/StorageSync/StorageSync/Common/Converters/CloudTieringFilesNotTieringConverter.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ namespace Microsoft.Azure.Commands.StorageSync.Common.Converters
2222

2323
/// <summary>
2424
/// Class CloudTieringFilesNotTieringConverter.
25-
/// Implements the <see cref="Converters.ConverterBase{PSCloudTieringFilesNotTiering, StorageSyncModels.CloudTieringFilesNotTiering}" />
25+
/// Implements the <see cref="Converters.ConverterBase{PSCloudTieringFilesNotTiering, CloudTieringFilesNotTiering}" />
2626
/// </summary>
27-
/// <seealso cref="Converters.ConverterBase{PSCloudTieringFilesNotTiering, StorageSyncModels.CloudTieringFilesNotTiering}" />
27+
/// <seealso cref="Converters.ConverterBase{PSCloudTieringFilesNotTiering, CloudTieringFilesNotTiering}" />
2828
public class CloudTieringFilesNotTieringConverter : ConverterBase<PSCloudTieringFilesNotTiering, StorageSyncModels.CloudTieringFilesNotTiering>
2929
{
3030
/// <summary>

0 commit comments

Comments
 (0)