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

Commit 19bdb37

Browse files
author
Meaghan Lewis
authored
Merge branch 'master' into update-authenticating-to-github
2 parents 527a08c + 59efadc commit 19bdb37

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77

88
Hi there! We're thrilled that you'd like to contribute to the __GitHub Extension for Visual Studio__. Your help is essential for keeping it great.
99

10+
Contributions to this project are [released](https://help.github.com/articles/github-terms-of-service/#6-contributions-under-repository-license) to the public under the [project's open source license](LICENSE.md).
11+
1012
This project adheres to the [Open Code of Conduct][code-of-conduct]. By participating, you are expected to uphold this code.
1113

1214
## Submitting a pull request

src/GitHub.App/ViewModels/GitHubPane/PullRequestListViewModel.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,8 @@ void UpdateFilter(PullRequestState state, IAccount ass, IAccount aut, string fil
206206
(filterTextIsNumber == false || pullRequest.Number == filterPullRequestNumber) &&
207207
(filterTextIsString == false || pullRequest.Title.ToUpperInvariant().Contains(filText.ToUpperInvariant()));
208208
}
209+
210+
SaveSettings();
209211
}
210212

211213
string searchQuery;
Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
using System;
22
using System.Runtime.InteropServices;
33
using Microsoft.VisualStudio.Shell;
4-
using GitHub.Logging;
5-
using Serilog;
64

75
namespace GitHub.VisualStudio
86
{
97
// Allow assemblies in the extension directory to be resolved by their full or partial name.
108
// This is required for GitHub.VisualStudio.imagemanifest, XAML and when using unsigned assemblies.
119
// See: https://github.com/github/VisualStudio/pull/1236/
1210
[ProvideBindingPath]
13-
1411
[Guid(Guids.guidAssemblyResolverPkgString)]
15-
public class AssemblyResolverPackage : Package
12+
public class AssemblyResolverPackage : AsyncPackage
1613
{
1714
}
1815
}

0 commit comments

Comments
 (0)