File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 146
146
<PackageReference Include =" CredentialManagement" >
147
147
<Version >1.0.2</Version >
148
148
</PackageReference >
149
+ <PackageReference Include =" DotNet.ReproducibleBuilds" >
150
+ <Version >1.1.1</Version >
151
+ <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
152
+ <PrivateAssets >all</PrivateAssets >
153
+ </PackageReference >
149
154
<PackageReference Include =" Emoji.Wpf" >
150
155
<Version >0.3.4</Version >
151
156
</PackageReference >
Original file line number Diff line number Diff line change @@ -112,6 +112,7 @@ public async Task GetRepoInfoAsync()
112
112
if ( _repoInfo . IsGitHub )
113
113
{
114
114
Debug . WriteLine ( $ "GitHub repo: { _repoInfo . RepoOwner } /{ _repoInfo . RepoName } ") ;
115
+ await _pane . WriteLineAsync ( $ "Found repo for { gitPath } at { _repoInfo . RepoOwner } /{ _repoInfo . RepoName } ") ;
115
116
await LoadDataAsync ( ) ;
116
117
}
117
118
else
@@ -300,7 +301,7 @@ private async Task RefreshEnvironmentsAsync(GitHubClient client)
300
301
{
301
302
if ( ex . StatusCode == System . Net . HttpStatusCode . Unauthorized || ex . StatusCode == System . Net . HttpStatusCode . Forbidden )
302
303
{
303
- envList . Add ( new SimpleEnvironment ( ) { Name = "Insufficient permissions to retrieve Secrets" } ) ;
304
+ envList . Add ( new SimpleEnvironment ( ) { Name = resx . INSUFFICIENT_SECRET_PERMS } ) ;
304
305
await ex . LogAsync ( ex . Message ) ;
305
306
}
306
307
}
You can’t perform that action at this time.
0 commit comments