Skip to content

Commit 965a190

Browse files
authored
ensure global config exists when initializing local one (#40)
1 parent 670d906 commit 965a190

20 files changed

+106
-49
lines changed

ViewTest/MainWindow.xaml.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,11 @@ public Task<IList<T>> GetCommitTypesAsync<T>() where T : class
4141
throw new System.NotImplementedException();
4242
}
4343

44+
public Task<string> GetConfigUserProfilePathAsync()
45+
{
46+
throw new NotImplementedException();
47+
}
48+
4449
public Task<string> TryGetLocalConfigAsync()
4550
{
4651
throw new System.NotImplementedException();
1.24 MB
Binary file not shown.
2.27 MB
Binary file not shown.
1.12 MB
Binary file not shown.
3.09 MB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
886 KB
Binary file not shown.

vs-commitizen.Settings/IConfigFileProvider.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ namespace vs_commitizen.Settings
66
public interface IConfigFileProvider
77
{
88
Task<IList<T>> GetCommitTypesAsync<T>() where T : class;
9+
Task<string> GetConfigUserProfilePathAsync();
910
Task<string> TryGetLocalConfigAsync();
1011
}
1112
}

0 commit comments

Comments
 (0)