File tree 1 file changed +8
-21
lines changed
test/LibraryManager.Mocks
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
12
12
/// <seealso cref="LibraryManager.Contracts.ILibraryInstallationState" />
13
13
public class LibraryInstallationState : ILibraryInstallationState
14
14
{
15
- /// <summary>
16
- /// The unique identifier of the provider.
17
- /// </summary>
15
+ /// <inheritdoc />
18
16
public virtual string ProviderId { get ; set ; }
19
17
20
- /// <summary>
21
- /// The list of file names to install
22
- /// </summary>
18
+ /// <inheritdoc />
23
19
public virtual IReadOnlyList < string > Files { get ; set ; }
24
20
25
- /// <summary>
26
- /// The path relative to the working directory to copy the files to.
27
- /// </summary>
21
+ /// <inheritdoc />
28
22
public virtual string DestinationPath { get ; set ; }
29
23
30
- /// <summary>
31
- /// Name of the library.
32
- /// </summary>
24
+ /// <inheritdoc />
33
25
public string Name { get ; set ; }
34
26
35
- /// <summary>
36
- /// Version of the library.
37
- /// </summary>
27
+ /// <inheritdoc />
38
28
public string Version { get ; set ; }
39
29
40
- /// <summary>
41
- /// Indicates whether the library is using the default destination
42
- /// </summary>
30
+ /// <inheritdoc />
43
31
public bool IsUsingDefaultDestination { get ; set ; }
44
32
45
- /// <summary>
46
- /// Indicates whether the library is using the default provider.
47
- /// </summary>
33
+ /// <inheritdoc />
48
34
public bool IsUsingDefaultProvider { get ; set ; }
49
35
36
+ /// <inheritdoc />
50
37
public IReadOnlyList < FileMapping > FileMappings => throw new System . NotImplementedException ( ) ;
51
38
}
52
39
}
You can’t perform that action at this time.
0 commit comments