Skip to content
This repository was archived by the owner on Jun 21, 2023. It is now read-only.
Open
Changes from 1 commit
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/GitHub.InlineReviews/PullRequestFilterProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

namespace GitHub.InlineReviews
{
public class PullRequestFilterPackageGuids
public static class PullRequestFilterPackageGuids
{
public const string GuidPullRequestFilterPackageCmdSetString = "7cde2dfc-43c9-41ff-bf2e-bef41cd99e09";
public const int PullRequestFilterId = 0x0100;
Expand Down Expand Up @@ -93,7 +93,7 @@ private bool ShouldIncludeInFilter(IVsHierarchyItem hierarchyItem)

private static string BuildAbsolutePath(string solutionDirectory, string fileRelativePath)
{
return Path.Combine(solutionDirectory, fileRelativePath.Replace("/", @"\")).ToLower();
return Path.Combine(solutionDirectory, fileRelativePath.Replace("/", @"\")).ToUpperInvariant();
Comment thread
jcansdale marked this conversation as resolved.
}
}
}
Expand Down