We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e978fc8 commit 001564cCopy full SHA for 001564c
1 file changed
src/CredentialManager/CommandContext.cs
@@ -16,9 +16,9 @@ namespace GitCredentialManager;
16
class CommandContextAdapter : ICommandContext
17
{
18
readonly CommandContext context;
19
- readonly ICredentialStore store;
20
readonly ISettings settings;
21
readonly IHttpClientFactory clientFactory;
+ ICredentialStore store;
22
23
public CommandContextAdapter(CommandContext context, string? @namespace = default)
24
@@ -37,7 +37,11 @@ context.Settings is WindowsSettings ?
37
38
public ISettings Settings => settings;
39
40
- public ICredentialStore CredentialStore => store;
+ public ICredentialStore CredentialStore
41
+ {
42
+ get => store;
43
+ set => store = value;
44
+ }
45
46
public IHttpClientFactory HttpClientFactory => clientFactory;
47
0 commit comments