Skip to content

Commit 407ab41

Browse files
committed
PR feedback - XML docs on mock type
1 parent 1c920cb commit 407ab41

File tree

1 file changed

+8
-21
lines changed

1 file changed

+8
-21
lines changed

test/LibraryManager.Mocks/LibraryInstallationState.cs

Lines changed: 8 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -12,41 +12,28 @@ namespace Microsoft.Web.LibraryManager.Mocks
1212
/// <seealso cref="LibraryManager.Contracts.ILibraryInstallationState" />
1313
public class LibraryInstallationState : ILibraryInstallationState
1414
{
15-
/// <summary>
16-
/// The unique identifier of the provider.
17-
/// </summary>
15+
/// <inheritdoc />
1816
public virtual string ProviderId { get; set; }
1917

20-
/// <summary>
21-
/// The list of file names to install
22-
/// </summary>
18+
/// <inheritdoc />
2319
public virtual IReadOnlyList<string> Files { get; set; }
2420

25-
/// <summary>
26-
/// The path relative to the working directory to copy the files to.
27-
/// </summary>
21+
/// <inheritdoc />
2822
public virtual string DestinationPath { get; set; }
2923

30-
/// <summary>
31-
/// Name of the library.
32-
/// </summary>
24+
/// <inheritdoc />
3325
public string Name { get; set; }
3426

35-
/// <summary>
36-
/// Version of the library.
37-
/// </summary>
27+
/// <inheritdoc />
3828
public string Version { get; set; }
3929

40-
/// <summary>
41-
/// Indicates whether the library is using the default destination
42-
/// </summary>
30+
/// <inheritdoc />
4331
public bool IsUsingDefaultDestination { get; set; }
4432

45-
/// <summary>
46-
/// Indicates whether the library is using the default provider.
47-
/// </summary>
33+
/// <inheritdoc />
4834
public bool IsUsingDefaultProvider { get; set; }
4935

36+
/// <inheritdoc />
5037
public IReadOnlyList<FileMapping> FileMappings => throw new System.NotImplementedException();
5138
}
5239
}

0 commit comments

Comments
 (0)