Skip to content

Commit 64273b8

Browse files
committed
The logs to the output window now actually appear.
1 parent 8ecea0e commit 64273b8

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

Source/Model/SolutionManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ public SolutionManager(IVsSolution solution, IOutputWindow outputWindow)
155155

156156
private void WriteLog(string message)
157157
{
158-
m_outputWindow.GetOrCreatePane(m_outputPaneGuid, "Project Set Manager", false).WriteLine(message);
158+
m_outputWindow.GetOrCreatePane(m_outputPaneGuid, "Project Set Manager", true).WriteLine(message);
159159
}
160160

161161
public SolutionInfo GetSolutionInfo()

Source/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
// You can specify all the values or you can default the Revision and Build Numbers
3131
// by using the '*' as shown below:
3232

33-
[assembly: AssemblyVersion("1.3.0.0")]
34-
[assembly: AssemblyFileVersion("1.3.0.0")]
33+
[assembly: AssemblyVersion("1.3.1.0")]
34+
[assembly: AssemblyFileVersion("1.3.1.0")]
3535

3636
[assembly: ThemeInfo(
3737
ResourceDictionaryLocation.SourceAssembly, //where theme specific resource dictionaries are located

Source/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Id="6B92280F-2172-4391-A782-6967F1777D4A" Version="1.3" Language="en-US" Publisher="Peter Palotas" />
4+
<Identity Id="6B92280F-2172-4391-A782-6967F1777D4A" Version="1.3.1" Language="en-US" Publisher="Peter Palotas" />
55
<DisplayName>Project Set Manager</DisplayName>
66
<Description xml:space="preserve">The Alphaleonis Project Set Manager allows saving and restoring which projects are currently loaded in the solution in named profiles. This makes it easier to work with very large solutions where you frequently find yourself unloading and loading different sets of projects to speed build and load times based on what you are currently working on.</Description>
77
<License>LICENSE.txt</License>

0 commit comments

Comments
 (0)