Skip to content

Commit

Permalink
Different GUID for VS10 version
Browse files Browse the repository at this point in the history
  • Loading branch information
ceztko committed Jun 11, 2017
1 parent 75840b4 commit c85549f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions SccAutoSwitcher/Guids.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ namespace SccAutoSwitcher
{
static class GuidList
{
#if VS10
public const string guidPkgString = "e0602ccb-aef8-4c8a-a598-530ff1be851b";
#else
public const string guidPkgString = "99316bc5-70c5-4ef1-9a29-ea7568408ed0";
#endif
};
}
2 changes: 1 addition & 1 deletion SccAutoSwitcher/ManifestVS10/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Vsix xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" Version="1.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2010">
<Identifier Id="99316bc5-70c5-4ef1-9a29-ea7568408ed0">
<Identifier Id="e0602ccb-aef8-4c8a-a598-530ff1be851b">
<Name>Scc Auto Switcher</Name>
<Author>Francesco Pretto</Author>
<Version>1.2.0</Version>
Expand Down
4 changes: 2 additions & 2 deletions SccAutoSwitcher/SccAutoSwitcher.VS10.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>..\targetVS10\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<DefineConstants>TRACE;DEBUG;VS10</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>..\targetVS10\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<DefineConstants>TRACE;CODE_ANALYSIS;VS10</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<RunCodeAnalysis>true</RunCodeAnalysis>
Expand Down

0 comments on commit c85549f

Please sign in to comment.