Skip to content

Commit

Permalink
Merge pull request #93 from BIDeveloperExtensions/bidshelper-vsix
Browse files Browse the repository at this point in the history
2.3.5 release
  • Loading branch information
furmangg committed Mar 23, 2020
2 parents c1ab11d + 4ce1309 commit c2d0452
Show file tree
Hide file tree
Showing 72 changed files with 988 additions and 7,312 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ build/
[Bb]in/
[Oo]bj/
[Pp]ackage/
[Pp]ackages/

# MSTest test Results
[Tt]est[Rr]esult*/
Expand Down
15 changes: 10 additions & 5 deletions BidsHelperPackage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,13 @@ private void OriginalInitialize()
try
{
System.IServiceProvider serviceProvider = this as System.IServiceProvider;
Microsoft.VisualStudio.ExtensionManager.IVsExtensionManager em =
(Microsoft.VisualStudio.ExtensionManager.IVsExtensionManager)serviceProvider.GetService(
//Microsoft.VisualStudio.ExtensionManager.IVsExtensionManager em =
// (Microsoft.VisualStudio.ExtensionManager.IVsExtensionManager)serviceProvider.GetService(
// typeof(Microsoft.VisualStudio.ExtensionManager.IVsExtensionManager));
var em1 =
serviceProvider.GetService(
typeof(Microsoft.VisualStudio.ExtensionManager.SVsExtensionManager));

Microsoft.VisualStudio.ExtensionManager.IVsExtensionManager em = em1 as Microsoft.VisualStudio.ExtensionManager.IVsExtensionManager;
string result = "";
foreach (Microsoft.VisualStudio.ExtensionManager.IInstalledExtension i in em.GetInstalledExtensions())
{
Expand Down Expand Up @@ -173,11 +176,13 @@ private void OriginalInitialize()
}
result += h.Name + " (by " + h.Author + ") v" + h.Version + " " + h.Identifier + " " + h.MoreInfoUrl + " " + i.InstallPath + System.Environment.NewLine;
}
catch { }
catch (Exception ex){ Log.Debug($"Error iterating other extensions: {ex.Message}"); }
}
Log.Debug(result);
}
catch { }
catch (Exception ex) {
Log.Debug($"Error getting extension manager: {ex.Message}");
}


string sAddInTypeName = string.Empty;
Expand Down
2 changes: 1 addition & 1 deletion Core/VersionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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.4";
public const string Version = "2.3.5";

private static readonly object lockResource = new object();
private static Version visualStudioVersion;
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified DLLs/SQL2019/Reference/Microsoft.AnalysisServices.BackEnd.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified DLLs/SQL2019/Reference/Microsoft.AnalysisServices.Controls.DLL
Binary file not shown.
Binary file modified DLLs/SQL2019/Reference/Microsoft.AnalysisServices.Core.dll
Binary file not shown.
Binary file modified DLLs/SQL2019/Reference/Microsoft.AnalysisServices.Design.AS.DLL
Binary file not shown.
Binary file not shown.
Binary file modified DLLs/SQL2019/Reference/Microsoft.AnalysisServices.Project.AS.DLL
Binary file not shown.
Binary file modified DLLs/SQL2019/Reference/Microsoft.AnalysisServices.Project.DLL
Binary file not shown.
Binary file modified DLLs/SQL2019/Reference/Microsoft.AnalysisServices.Tabular.dll
Binary file not shown.
Binary file modified DLLs/SQL2019/Reference/Microsoft.AnalysisServices.VSHost.dll
Binary file not shown.
Binary file modified DLLs/SQL2019/Reference/Microsoft.AnalysisServices.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified DLLs/SQL2019/Reference/Microsoft.DataWarehouse.AS.dll
Binary file not shown.
Binary file modified DLLs/SQL2019/Reference/Microsoft.DataWarehouse.Interfaces.DLL
Binary file not shown.
Binary file modified DLLs/SQL2019/Reference/Microsoft.DataWarehouse.RS.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified DLLs/SQL2019/Reference/Microsoft.DataWarehouse.dll
Binary file not shown.
Binary file modified DLLs/SQL2019/Reference/Microsoft.SQLServer.DTSPipelineWrap.dll
Binary file not shown.
Binary file modified DLLs/SQL2019/Reference/Microsoft.SqlServer.DTSRuntimeWrap.dll
Binary file not shown.
Binary file modified DLLs/SQL2019/Reference/Microsoft.SqlServer.Dts.Design.DLL
Binary file not shown.
Binary file not shown.
Binary file modified DLLs/SQL2019/Reference/Microsoft.SqlServer.Graph.DLL
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified DLLs/SQL2019/Reference/Microsoft.SqlServer.ManagedDTS.dll
Binary file not shown.
Binary file not shown.
65 changes: 65 additions & 0 deletions DLLs/SQL2019/copy-ssdt-dlls.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
set dest=C:\projects\BIDS Helper\GitHub\bideveloperextensions2\DLLs\SQL2019\Reference

c:
cd "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\CommonExtensions\Microsoft\SSAS"
copy /Y /B "Microsoft.AnalysisServices.AdomdClient.dll" "%dest%"
copy /Y /B "Microsoft.AnalysisServices.BackEnd.dll" "%dest%"
copy /Y /B "Microsoft.AnalysisServices.Common.FrontEnd.dll" "%dest%"
copy /Y /B "Microsoft.AnalysisServices.Controls.AS.dll" "%dest%"
copy /Y /B "Microsoft.AnalysisServices.Core.dll" "%dest%"
copy /Y /B "Microsoft.AnalysisServices.Design.AS.dll" "%dest%"
copy /Y /B "Microsoft.AnalysisServices.dll" "%dest%"
copy /Y /B "Microsoft.AnalysisServices.MPFProjectBase.dll" "%dest%"
copy /Y /B "Microsoft.AnalysisServices.Project.AS.dll" "%dest%"
copy /Y /B "Microsoft.AnalysisServices.Tabular.dll" "%dest%"
copy /Y /B "Microsoft.AnalysisServices.VSHost.dll" "%dest%"
copy /Y /B "Microsoft.DataWarehouse.AS.dll" "%dest%"
copy /Y /B "Microsoft.DataWarehouse.Interfaces.dll" "%dest%"
copy /Y /B "Microsoft.DataWarehouse.VsIntegration.AS.dll" "%dest%"
copy /Y /B "Microsoft.SqlServer.DlgGrid.dll" "%dest%"
copy /Y /B "Microsoft.SqlServer.GridControl.dll" "%dest%"
copy /Y /B "Microsoft.DataWarehouse.Interfaces.DLL" "%dest%\FromASFolder\Microsoft.DataWarehouse.Interfaces.AS.DLL"


REM cd "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\CommonExtensions\Microsoft\SSAS\LocalServer"
REM copy /Y /B "Microsoft.AnalysisServices.Server.Tabular.dll" "%dest%"
REM copy /Y /B "Microsoft.AnalysisServices.Server.Tabular.Json.dll" "%dest%"

cd "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\CommonExtensions\Microsoft\BIShared"
copy /Y /B "Microsoft.AnalysisServices.Design.dll" "%dest%"


cd "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\CommonExtensions\Microsoft\SSIS\150\Binn"
copy /Y /B "Microsoft.DataTransformationServices.Controls.dll" "%dest%"
copy /Y /B "Microsoft.SQLServer.DTSPipelineWrap.dll" "%dest%"
copy /Y /B "Microsoft.SqlServer.DTSRuntimeWrap.dll" "%dest%"
copy /Y /B "Microsoft.SqlServer.ExecPackageTaskWrap.dll" "%dest%"
copy /Y /B "Microsoft.SqlServer.ManagedDTS.dll" "%dest%"

cd "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\CommonExtensions\Microsoft\SSIS\150\BIShared"
copy /Y /B "Microsoft.DataWarehouse.dll" "%dest%"
copy /Y /B "Microsoft.AnalysisServices.Project.dll" "%dest%"
copy /Y /B "Microsoft.DataWarehouse.VsIntegration.dll" "%dest%"
copy /Y /B "Microsoft.AnalysisServices.Controls.dll" "%dest%"


cd "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\CommonExtensions\Microsoft\SSIS"
copy /Y /B "Microsoft.DataTransformationServices.Design.dll" "%dest%"
copy /Y /B "Microsoft.DataTransformationServices.VsIntegration.dll" "%dest%"
copy /Y /B "Microsoft.SqlServer.Dts.Design.dll" "%dest%"
copy /Y /B "Microsoft.SqlServer.Graph.dll" "%dest%"
copy /Y /B "Microsoft.SqlServer.IntegrationServices.Design.dll" "%dest%"
copy /Y /B "Microsoft.SqlServer.IntegrationServices.Graph.dll" "%dest%"


cd "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\CommonExtensions\Microsoft\SSRS"
copy /Y /B "Microsoft.DataWarehouse.RS.dll" "%dest%"
copy /Y /B "Microsoft.DataWarehouse.VsIntegration.RS.dll" "%dest%"

REM not sure where it's from
REM copy /Y /B "Microsoft.ReportViewer.Common.AppLocal.dll" "%dest%"
REM copy /Y /B "Microsoft.ReportViewer.DataVisualization.AppLocal.dll" "%dest%"
REM copy /Y /B "Microsoft.ReportViewer.Design.AppLocal.dll" "%dest%"
REM copy /Y /B "Microsoft.ReportViewer.ProcessingObjectModel.AppLocal.dll" "%dest%"
REM copy /Y /B "Microsoft.ReportViewer.Winforms.AppLocal.dll" "%dest%"

2 changes: 1 addition & 1 deletion Manifest/SQL2017/VSPackageVS2017.resx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
<value>BI Developer Extensions for Visual Studio 2017</value>
</data>
<data name="112" xml:space="preserve">
<value>BI Developer Extensions v2.3.4 for Visual Studio 2017 - An add-in to extend SQL Server Data Tools</value>
<value>BI Developer Extensions v2.3.5 for Visual Studio 2017 - An add-in to extend SQL Server Data Tools</value>
</data>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="400" type="System.Resources.ResXFileRef, System.Windows.Forms">
Expand Down
2 changes: 1 addition & 1 deletion Manifest/SQL2017/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<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">
<Metadata>
<Identity Id="BIDSHelper_VSIX.b6deed2d-6c6f-46d4-94be-28027bf7d873" Version="2.3.4" Language="en-US" Publisher="bideveloperextensions.github.io" />
<Identity Id="BIDSHelper_VSIX.b6deed2d-6c6f-46d4-94be-28027bf7d873" Version="2.3.5" Language="en-US" Publisher="bideveloperextensions.github.io" />
<DisplayName>BI Developer Extensions for Visual Studio 2017</DisplayName>
<Description xml:space="preserve">BI Developer Extensions (formerly BIDS Helper) is an extension for BIDS / SSDT that includes numerous enhancements for SQL Server BI projects</Description>
<MoreInfo>https://bideveloperextensions.github.io</MoreInfo>
Expand Down
2 changes: 1 addition & 1 deletion Manifest/SQL2019/VSPackageVS2019.resx
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@
<value>BI Developer Extensions for Visual Studio 2019</value>
</data>
<data name="112" xml:space="preserve">
<value>BI Developer Extensions v2.3.4 for Visual Studio 2019 - An add-in to extend SQL Server Data Tools</value>
<value>BI Developer Extensions v2.3.5 for Visual Studio 2019 - An add-in to extend SQL Server Data Tools</value>
</data>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="400" type="System.Resources.ResXFileRef, System.Windows.Forms">
Expand Down
2 changes: 1 addition & 1 deletion Manifest/SQL2019/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<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">
<Metadata>
<Identity Id="BIDSHelper_VSIX.b6deed2d-6c6f-46d4-94be-28027bf7d874" Version="2.3.4" Language="en-US" Publisher="bideveloperextensions.github.io" />
<Identity Id="BIDSHelper_VSIX.b6deed2d-6c6f-46d4-94be-28027bf7d874" Version="2.3.5" Language="en-US" Publisher="bideveloperextensions.github.io" />
<DisplayName>BI Developer Extensions for Visual Studio 2019</DisplayName>
<Description xml:space="preserve">BI Developer Extensions (formerly BIDS Helper) is an extension for BIDS / SSDT that includes numerous enhancements for SQL Server BI projects</Description>
<MoreInfo>https://bideveloperextensions.github.io</MoreInfo>
Expand Down
2 changes: 1 addition & 1 deletion Resources/Common.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit c2d0452

Please sign in to comment.