We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 19dbb59 + bef13ee commit 6a48673Copy full SHA for 6a48673
src/Vsix/ViewModels/MainViewModel.cs
@@ -546,6 +546,12 @@ public async void RunOperationAsync(ISymbol symbol)
546
547
// Find Release-x64 configuration:
548
Project currentProject = dte.GetActiveProject();
549
+ if (currentProject is null)
550
+ {
551
+ Output = "There no active project. Please re-open solution.";
552
+ return;
553
+ }
554
+
555
IProjectProperties projectProperties = await IdeUtils.GetProjectProperties(GetUnconfiguredProject(currentProject), "Release");
556
557
ThrowIfCanceled();
0 commit comments