Skip to content

Commit f3e1282

Browse files
committed
bumping version number to 2.0.1 for release
1 parent ccf854c commit f3e1282

5 files changed

Lines changed: 10 additions & 9 deletions

File tree

Core/VersionInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ public class VersionInfo
99
{
1010
// BIDS Helper Assembly & VSIX Version
1111
// N.B. Manually update the manifest file, if you change this - See source.extension.vsixmanifest
12-
public const string Version = "2.0.0.1";
12+
public const string Version = "2.0.1";
1313

1414
private static readonly object lockResource = new object();
1515
private static Version visualStudioVersion;

Manifest/SQL2016/source.extension.vsixmanifest

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
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="BIDSHelper_VSIX.b6deed2d-6c6f-46d4-94be-28027bf7d872" Version="1.7.2" Language="en-US" Publisher="BIDSHelper.codeplex.com" />
5-
<DisplayName>BIDS Helper</DisplayName>
4+
<Identity Id="BIDSHelper_VSIX.b6deed2d-6c6f-46d4-94be-28027bf7d872" Version="2.0.1" Language="en-US" Publisher="BIDSHelper.codeplex.com" />
5+
<DisplayName>BIDS Helper for Visual Studio 2015</DisplayName>
66
<Description xml:space="preserve">BIDS Helper is an extension for BIDS / SSDT-BI that includes numerous enhancements for SQL Server BI projects</Description>
77
<MoreInfo>https://bidshelper.codeplex.com/documentation</MoreInfo>
88
<License>License.rtf</License>

SQL2016_BidsHelper.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -647,6 +647,10 @@
647647
<None Include="Resources\DeployMdxScript.xslt" />
648648
</ItemGroup>
649649
<ItemGroup>
650+
<Reference Include="BimlEngine, Version=2.0.0.0, Culture=neutral, PublicKeyToken=dd4a9bc4187e1297, processorArchitecture=MSIL">
651+
<SpecificVersion>False</SpecificVersion>
652+
<HintPath>DLLs\Biml\BimlEngine.dll</HintPath>
653+
</Reference>
650654
<Reference Include="EnvDTE, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
651655
<EmbedInteropTypes>False</EmbedInteropTypes>
652656
</Reference>
@@ -663,10 +667,6 @@
663667
<SpecificVersion>False</SpecificVersion>
664668
<HintPath>DLLs\Biml\Antlr3.Runtime.dll</HintPath>
665669
</Reference>
666-
<Reference Include="BimlEngine, Version=2.0.0.0, Culture=neutral, PublicKeyToken=dd4a9bc4187e1297, processorArchitecture=MSIL">
667-
<SpecificVersion>False</SpecificVersion>
668-
<HintPath>DLLs\Biml\BimlEngine.dll</HintPath>
669-
</Reference>
670670
<Reference Include="ExpressionEditor, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b2ab4a111192992b, processorArchitecture=MSIL">
671671
<SpecificVersion>False</SpecificVersion>
672672
<HintPath>DLLs\SQL2016\ExpressionEditor.dll</HintPath>

SSIS/SortablePackagePropertiesPlugin.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,8 @@ private PackageProperties GetPackageProperties(ProjectItem pi)
258258
}
259259
else
260260
{
261-
Microsoft.SqlServer.Dts.Runtime.Application app = new Microsoft.SqlServer.Dts.Runtime.Application();
261+
//Microsoft.SqlServer.Dts.Runtime.Application app = new Microsoft.SqlServer.Dts.Runtime.Application();
262+
Microsoft.SqlServer.Dts.Runtime.Application app = SSIS.PackageHelper.Application; //sets the proper TargetServerVersion
262263
package = app.LoadPackage(pi.get_FileNames(0), null);
263264
}
264265

VSPackage.resx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
<value>BIDSHelper Extension</value>
122122
</data>
123123
<data name="112" xml:space="preserve">
124-
<value>BIDSHelper Visual Studio Extension Detailed Info</value>
124+
<value>BIDS Helper 2016 Visual Studio Extension v2.0.1 - An add-in to extend SQL Server Data Tools</value>
125125
</data>
126126
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
127127
<data name="400" type="System.Resources.ResXFileRef, System.Windows.Forms">

0 commit comments

Comments
 (0)