diff --git a/Core/VersionInfo.cs b/Core/VersionInfo.cs index 0d55c26..4cf94dd 100644 --- a/Core/VersionInfo.cs +++ b/Core/VersionInfo.cs @@ -9,7 +9,7 @@ public class VersionInfo { // BIDS Helper Assembly & VSIX Version // N.B. Manually update the manifest file, if you change this - See source.extension.vsixmanifest - public const string Version = "2.3.2"; + public const string Version = "2.3.3"; private static readonly object lockResource = new object(); private static Version visualStudioVersion; diff --git a/Manifest/SQL2017/VSPackageVS2017.resx b/Manifest/SQL2017/VSPackageVS2017.resx index 13d721b..67a31fa 100644 --- a/Manifest/SQL2017/VSPackageVS2017.resx +++ b/Manifest/SQL2017/VSPackageVS2017.resx @@ -121,7 +121,7 @@ BI Developer Extensions for Visual Studio 2017 - BI Developer Extensions v2.3.2 for Visual Studio 2017 - An add-in to extend SQL Server Data Tools + BI Developer Extensions v2.3.3 for Visual Studio 2017 - An add-in to extend SQL Server Data Tools diff --git a/Manifest/SQL2017/source.extension.vsixmanifest b/Manifest/SQL2017/source.extension.vsixmanifest index 534f1fb..9a5d86a 100644 --- a/Manifest/SQL2017/source.extension.vsixmanifest +++ b/Manifest/SQL2017/source.extension.vsixmanifest @@ -1,7 +1,7 @@  - + BI Developer Extensions for Visual Studio 2017 BI Developer Extensions (formerly BIDS Helper) is an extension for BIDS / SSDT that includes numerous enhancements for SQL Server BI projects https://bideveloperextensions.github.io diff --git a/Manifest/SQL2019/VSPackageVS2019.resx b/Manifest/SQL2019/VSPackageVS2019.resx index d052132..9640de0 100644 --- a/Manifest/SQL2019/VSPackageVS2019.resx +++ b/Manifest/SQL2019/VSPackageVS2019.resx @@ -121,7 +121,7 @@ BI Developer Extensions for Visual Studio 2019 - BI Developer Extensions v2.3.2 for Visual Studio 2019 - An add-in to extend SQL Server Data Tools + BI Developer Extensions v2.3.3 for Visual Studio 2019 - An add-in to extend SQL Server Data Tools diff --git a/Manifest/SQL2019/source.extension.vsixmanifest b/Manifest/SQL2019/source.extension.vsixmanifest index cc4af9b..13e0bb1 100644 --- a/Manifest/SQL2019/source.extension.vsixmanifest +++ b/Manifest/SQL2019/source.extension.vsixmanifest @@ -1,7 +1,7 @@  - + BI Developer Extensions for Visual Studio 2019 BI Developer Extensions (formerly BIDS Helper) is an extension for BIDS / SSDT that includes numerous enhancements for SQL Server BI projects https://bideveloperextensions.github.io @@ -11,7 +11,7 @@ SSDT,SSIS,SSAS,SSRS,BIDS,SQL Server Data Tools,Integration Services,Analysis Services,Reporting Services - + diff --git a/SSIS/ParametersWindowPlugin.cs b/SSIS/ParametersWindowPlugin.cs index 8bfa751..b37b721 100644 --- a/SSIS/ParametersWindowPlugin.cs +++ b/SSIS/ParametersWindowPlugin.cs @@ -133,7 +133,7 @@ public class ParametersWindowManager private ToolBarButton findReferencesButton; private ToolBarButton findUnusedButton; private UserControl variablesToolWindowControl; - private DlgGridControl grid; + private Microsoft.DataTransformationServices.Controls.DlgGridControl grid; private EditorWindow editorWindow; private bool setupComplete; @@ -199,7 +199,7 @@ private void SetupControl() toolbar.Wrappable = false; // "tableLayoutPanelMain" - "tableLayoutPanelParameter" - "parameterGridControl" - grid = (DlgGridControl)variablesToolWindowControl.Controls[0].Controls[1].Controls[0]; + grid = (Microsoft.DataTransformationServices.Controls.DlgGridControl)variablesToolWindowControl.Controls[0].Controls[1].Controls[0]; grid.SelectionChanged += new SelectionChangedEventHandler(grid_SelectionChanged); grid.Invalidated += new InvalidateEventHandler(grid_Invalidated);