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;
1616class CommandContextAdapter : ICommandContext
1717{
1818 readonly CommandContext context ;
19- readonly ICredentialStore store ;
2019 readonly ISettings settings ;
2120 readonly IHttpClientFactory clientFactory ;
21+ ICredentialStore store ;
2222
2323 public CommandContextAdapter ( CommandContext context , string ? @namespace = default )
2424 {
@@ -37,7 +37,11 @@ context.Settings is WindowsSettings ?
3737
3838 public ISettings Settings => settings ;
3939
40- public ICredentialStore CredentialStore => store ;
40+ public ICredentialStore CredentialStore
41+ {
42+ get => store ;
43+ set => store = value ;
44+ }
4145
4246 public IHttpClientFactory HttpClientFactory => clientFactory ;
4347
You can’t perform that action at this time.
0 commit comments