Skip to content

Commit 2409aac

Browse files
author
Jordan Pierce
committed
Fix System.Design ref and vsFindResults namespace
1 parent 1844ca8 commit 2409aac

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

OffensiveVS360/OffensiveVS360.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,11 @@
2727
</ItemGroup>
2828

2929
<ItemGroup>
30-
<!-- .NET 4.7.2 framework assemblies needed for compression and HTTP -->
30+
<!-- .NET 4.7.2 framework assemblies -->
3131
<Reference Include="System.IO.Compression" />
3232
<Reference Include="System.IO.Compression.FileSystem" />
3333
<Reference Include="System.Net.Http" />
34+
<Reference Include="System.Design" />
3435
</ItemGroup>
3536

3637
<ItemGroup>

OffensiveVS360/ToolWindow/FindingsWindowControl.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ private async Task NavigateToFindingAsync(Vulnerability v)
251251
var ep = textDoc.StartPoint.CreateEditPoint();
252252
var line = v.GetLineNumberInt();
253253
ep.MoveToLineAndOffset(line, 1);
254-
ep.TryToShow(vsFindResults.vsFindResultsNone, true);
254+
ep.TryToShow(EnvDTE.vsFindResults.vsFindResultsNone, true);
255255

256256
var sel = textDoc.Selection;
257257
sel.MoveToLineAndOffset(line, Math.Max(1, v.GetColumnNumberInt()));

0 commit comments

Comments
 (0)