Skip to content

Commit e7a65dd

Browse files
authored
#87 fixed focus issue (#88)
* #87 fixed focus issue * Update AssemblyInfo.cs * Update TestCop.nuspec
1 parent 3a824bc commit e7a65dd

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

Project/Src/InstallSupport/TestCop.nuspec

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<authors>Alcaeus</authors>
99
<description>Easily switch between unit tests and code. Create missing associated files. Includes highlightings and test templates to keep test projects neat and tidy. Works with NUnit, MSTest, xUnit ...</description>
1010
<releaseNotes>
11+
1.10.15.7 Fixed focus issue when logging output
1112
1.10.15.6 Recompiled with R# SDK 2021.3.1
1213
1.10.15.5-EAP Recompiled with R# SDK 2021.3.0-eap07 and applied api changes
1314
1.10.15.4-EAP Recompiled with R# SDK 2021.3.0-eap05 and migrated to R# DTE wrapper

Project/Src/TestCop.Plugin/Helper/DTEHelper.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,10 +125,10 @@ public static IEnvDteOutputWindowPane GetOutputWindowPane(string name, bool show
125125
private static IEnvDteOutputWindowPane GetOutputWindowPane(IEnvDteWrapper dte, string name, bool show)
126126
{
127127
IEnvDteWindow window = dte.Windows.TryGetWindow(VsConstants.StandardToolWindows.Output.ToString("B"));
128-
window.Activate();
129-
128+
130129
if (show)
131130
{
131+
window.Activate();
132132
window.Visible = true;
133133
}
134134

@@ -139,4 +139,4 @@ private static IEnvDteOutputWindowPane GetOutputWindowPane(IEnvDteWrapper dte, s
139139
return outputWindowPane;
140140
}
141141
}
142-
}
142+
}

Project/Src/TestCop.Plugin/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@
3838
// by using the '*' as shown below:
3939
// [assembly: AssemblyVersion("1.0.*")]
4040

41-
[assembly: AssemblyVersion("1.10.15.6")]
42-
[assembly: AssemblyFileVersion("1.10.15.6")]
41+
[assembly: AssemblyVersion("1.10.15.7")]
42+
[assembly: AssemblyFileVersion("1.10.15.7")]
4343

0 commit comments

Comments
 (0)