File tree Expand file tree Collapse file tree 1 file changed +8
-21
lines changed
test/LibraryManager.Mocks Expand file tree Collapse file tree 1 file changed +8
-21
lines changed Original file line number Diff line number Diff 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}
You can’t perform that action at this time.
0 commit comments