Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.

Commit 8da8b03

Browse files
committed
Merge master into unification
2 parents 7223430 + 3101518 commit 8da8b03

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

documentation/manifest.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,16 @@
9191
- [ ] Verify Graphs button navigates to Graphs page on GitHub.com
9292
- [ ] Verify Wikis button navigates to Wikis page on GitHub.com (when logged in and the repository is enabled)
9393
- [ ] Verify Issues button navigates to Issues page on GitHub.com (when logged in and the repository is enabled)
94-
95-
94+
- [ ] **Creating Multiple Repositories**
95+
- [ ] Go to Team Explorer Connect page (logged in)
96+
- [ ] Create additional repository
97+
- [ ] Publish new repository
98+
- [ ] Verify remote information present in repository settings
99+
- [ ] **Validate Publish Repository Error**
100+
- [ ] Remove remote settings from repository
101+
- [ ] Go to Sync page and publish repository
102+
- [ ] Go to Team Explorer Connect page (logged in)
103+
- [ ] Click GitHub > Create
96104
# Connect page when logged in to TFS
97105
- [ ] **Connect to a TFS project**
98106
- [ ] Login to GitHub

src/GitHub.VisualStudio.UI/UI/Views/GitHubConnectContent.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ public object Convert(object[] values, Type targetType, object parameter, Cultur
9999

100100
var item = values[0] as ISimpleRepositoryModel;
101101
var context = values[1] as IGitAwareItem;
102-
return context?.ActiveRepoUri == item?.CloneUrl && context?.ActiveRepo?.LocalPath == item?.LocalPath;
102+
return context?.ActiveRepoUri == item?.CloneUrl && String.Equals(context?.ActiveRepo?.LocalPath, item?.LocalPath, StringComparison.OrdinalIgnoreCase);
103103
}
104104

105105
public object[] ConvertBack(object value, Type[] targetTypes, object parameter, CultureInfo culture)

0 commit comments

Comments
 (0)