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

Commit eb5d597

Browse files
authored
Merge branch 'master' into fixes/include-e_sqlite.dll-in-vsix
2 parents 81c4beb + 7522e89 commit eb5d597

File tree

12 files changed

+7
-154
lines changed

12 files changed

+7
-154
lines changed

src/GitHub.App/Services/RepositoryCloneService.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ public async Task<ViewerRepositoriesModel> ReadViewerRepositories(HostAddress ad
9797
Repositories = viewer.Repositories(null, null, null, null, null, order, affiliation, null, null)
9898
.AllPages()
9999
.Select(repositorySelection).ToList(),
100-
OrganizationRepositories = viewer.Organizations(null, null, null, null).AllPages().Select(org => new
100+
Organizations = viewer.Organizations(null, null, null, null).AllPages().Select(org => new
101101
{
102102
org.Login,
103103
Repositories = org.Repositories(null, null, null, null, null, order, null, null, null)

src/GitHub.App/ViewModels/Dialog/Clone/RepositorySelectViewModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ public async Task Activate()
117117
.Where(r => r.Owner != results.Owner)
118118
.OrderBy(r => r.Owner)
119119
.Select(x => new RepositoryItemViewModel(x, "Collaborator repositories"));
120-
var orgRepositories = results.OrganizationRepositories
120+
var orgRepositories = results.Organizations
121121
.OrderBy(x => x.Key)
122122
.SelectMany(x => x.Value.Select(y => new RepositoryItemViewModel(y, x.Key)));
123123
Items = yourRepositories.Concat(collaboratorRepositories).Concat(orgRepositories).ToList();

src/GitHub.Exports/Models/ViewerRepositoriesModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ public class ViewerRepositoriesModel
77
{
88
public string Owner { get; set; }
99
public IReadOnlyList<RepositoryListItemModel> Repositories { get; set; }
10-
public IDictionary<string, IReadOnlyList<RepositoryListItemModel>> OrganizationRepositories { get; set; }
10+
public IDictionary<string, IReadOnlyList<RepositoryListItemModel>> Organizations { get; set; }
1111
}
1212
}

src/GitHub.InlineReviews/GitHub.InlineReviews.csproj

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -221,13 +221,6 @@
221221
<SubType>Designer</SubType>
222222
</VSCTCompile>
223223
</ItemGroup>
224-
<ItemGroup>
225-
<EmbeddedResource Include="VSPackage.resx">
226-
<MergeWithCTO>true</MergeWithCTO>
227-
<ManifestResourceName>VSPackage</ManifestResourceName>
228-
<SubType>Designer</SubType>
229-
</EmbeddedResource>
230-
</ItemGroup>
231224
<ItemGroup>
232225
<Page Include="Properties\DesignTimeResources.xaml" Condition="'$(DesignTime)'=='true' OR ('$(SolutionPath)'!='' AND Exists('$(SolutionPath)') AND '$(BuildingInsideVisualStudio)'!='true' AND '$(BuildingInsideExpressionBlend)'!='true')">
233226
<Generator>MSBuild:Compile</Generator>
@@ -267,11 +260,6 @@
267260
<Generator>MSBuild:Compile</Generator>
268261
</Page>
269262
</ItemGroup>
270-
<ItemGroup>
271-
<Content Include="Resources\logo_32x32%402x.png">
272-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
273-
</Content>
274-
</ItemGroup>
275263
<ItemGroup>
276264
<Folder Include="SampleData\" />
277265
</ItemGroup>
-6.31 KB
Binary file not shown.

src/GitHub.InlineReviews/VSPackage.resx

Lines changed: 0 additions & 130 deletions
This file was deleted.

src/GitHub.VisualStudio/GitHub.VisualStudio.csproj

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,11 +166,10 @@
166166
</EmbeddedResource>
167167
</ItemGroup>
168168
<ItemGroup>
169-
<Content Include="Resources\preview_200x200.png">
170-
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
169+
<Content Include="Resources\logo_128x128.png">
171170
<IncludeInVSIX>true</IncludeInVSIX>
172171
</Content>
173-
<Content Include="Resources\logo_32x32%402x.png">
172+
<Content Include="Resources\preview_200x200.png">
174173
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
175174
<IncludeInVSIX>true</IncludeInVSIX>
176175
</Content>

src/GitHub.VisualStudio/GitHubPackage.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
namespace GitHub.VisualStudio
2929
{
3030
[PackageRegistration(UseManagedResourcesOnly = true, AllowsBackgroundLoading = true)]
31-
[InstalledProductRegistration("#110", "#112", AssemblyVersionInformation.Version, IconResourceID = 400)]
31+
[InstalledProductRegistration("#110", "#112", AssemblyVersionInformation.Version)]
3232
[Guid(Guids.guidGitHubPkgString)]
3333
[ProvideMenuResource("Menus.ctmenu", 1)]
3434
[ProvideAutoLoad(Guids.UIContext_Git, PackageAutoLoadFlags.BackgroundLoad)]
16.1 KB
Loading
-6.31 KB
Binary file not shown.

0 commit comments

Comments
 (0)