From 407ab4103559b36b0305a256871c485e4db0f5ab Mon Sep 17 00:00:00 2001 From: Jimmy Lewis Date: Thu, 27 Jun 2024 23:35:09 -0700 Subject: [PATCH] PR feedback - XML docs on mock type --- .../LibraryInstallationState.cs | 29 +++++-------------- 1 file changed, 8 insertions(+), 21 deletions(-) diff --git a/test/LibraryManager.Mocks/LibraryInstallationState.cs b/test/LibraryManager.Mocks/LibraryInstallationState.cs index 3447e35a..b29e0ae0 100644 --- a/test/LibraryManager.Mocks/LibraryInstallationState.cs +++ b/test/LibraryManager.Mocks/LibraryInstallationState.cs @@ -12,41 +12,28 @@ namespace Microsoft.Web.LibraryManager.Mocks /// public class LibraryInstallationState : ILibraryInstallationState { - /// - /// The unique identifier of the provider. - /// + /// public virtual string ProviderId { get; set; } - /// - /// The list of file names to install - /// + /// public virtual IReadOnlyList Files { get; set; } - /// - /// The path relative to the working directory to copy the files to. - /// + /// public virtual string DestinationPath { get; set; } - /// - /// Name of the library. - /// + /// public string Name { get; set; } - /// - /// Version of the library. - /// + /// public string Version { get; set; } - /// - /// Indicates whether the library is using the default destination - /// + /// public bool IsUsingDefaultDestination { get; set; } - /// - /// Indicates whether the library is using the default provider. - /// + /// public bool IsUsingDefaultProvider { get; set; } + /// public IReadOnlyList FileMappings => throw new System.NotImplementedException(); } }