File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -16,9 +16,9 @@ namespace GitCredentialManager;
16
16
class CommandContextAdapter : ICommandContext
17
17
{
18
18
readonly CommandContext context ;
19
- readonly ICredentialStore store ;
20
19
readonly ISettings settings ;
21
20
readonly IHttpClientFactory clientFactory ;
21
+ ICredentialStore store ;
22
22
23
23
public CommandContextAdapter ( CommandContext context , string ? @namespace = default )
24
24
{
@@ -37,7 +37,11 @@ context.Settings is WindowsSettings ?
37
37
38
38
public ISettings Settings => settings ;
39
39
40
- public ICredentialStore CredentialStore => store ;
40
+ public ICredentialStore CredentialStore
41
+ {
42
+ get => store ;
43
+ set => store = value ;
44
+ }
41
45
42
46
public IHttpClientFactory HttpClientFactory => clientFactory ;
43
47
You can’t perform that action at this time.
0 commit comments