Skip to content

Commit b76fbf4

Browse files
authored
Merge pull request #2 from alphaleonis/vs2019
Added support for VS2019.
2 parents 3a0aa1d + 054bc53 commit b76fbf4

4 files changed

Lines changed: 9 additions & 8 deletions

File tree

Source/ProjectSetManagerOptions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class ProjectSetManagerUserOptions : DialogPage
2626
{
2727
public ProjectSetManagerUserOptions()
2828
{
29-
Storage = ProjectSetProfileStorage.Solution;
29+
Storage = ProjectSetProfileStorage.ExternalFile;
3030
EditWindowLeft = 100;
3131
EditWindowWidth = 300;
3232
EditWindowTop = 100;

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.4.0")]
34-
[assembly: AssemblyFileVersion("1.3.4.0")]
33+
[assembly: AssemblyVersion("1.3.5.0")]
34+
[assembly: AssemblyFileVersion("1.3.5.0")]
3535

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

Source/VSProjectSetMgr.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@
5656
<DefineConstants>DEBUG;TRACE</DefineConstants>
5757
<ErrorReport>prompt</ErrorReport>
5858
<WarningLevel>4</WarningLevel>
59+
<RunCodeAnalysis>false</RunCodeAnalysis>
5960
</PropertyGroup>
6061
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
6162
<DebugType>pdbonly</DebugType>
@@ -64,7 +65,7 @@
6465
<DefineConstants>TRACE</DefineConstants>
6566
<ErrorReport>prompt</ErrorReport>
6667
<WarningLevel>4</WarningLevel>
67-
<RunCodeAnalysis>true</RunCodeAnalysis>
68+
<RunCodeAnalysis>false</RunCodeAnalysis>
6869
</PropertyGroup>
6970
<ItemGroup>
7071
<Reference Include="EnvDTE, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">

Source/source.extension.vsixmanifest

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
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.4" Language="en-US" Publisher="Peter Palotas" />
4+
<Identity Id="6B92280F-2172-4391-A782-6967F1777D4A" Version="1.3.5" 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>
88
<Icon>Package.ico</Icon>
99
</Metadata>
1010
<Installation InstalledByMsi="false">
11-
<InstallationTarget Version="[14.0,16.0)" Id="Microsoft.VisualStudio.Community" />
12-
<InstallationTarget Version="[14.0,16.0)" Id="Microsoft.VisualStudio.Pro" />
13-
<InstallationTarget Version="[14.0,16.0)" Id="Microsoft.VisualStudio.Enterprise" />
11+
<InstallationTarget Version="[14.0,17.0)" Id="Microsoft.VisualStudio.Community" />
12+
<InstallationTarget Version="[14.0,17.0)" Id="Microsoft.VisualStudio.Pro" />
13+
<InstallationTarget Version="[14.0,17.0)" Id="Microsoft.VisualStudio.Enterprise" />
1414
</Installation>
1515
<Dependencies>
1616
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="4.5" />

0 commit comments

Comments
 (0)