IsVisualStudio2012ProInstalled() method not found error when running an SSIS package from VS2012

后端 未结 6 1103
野的像风
野的像风 2020-12-23 11:21

I\'m trying to run an SSIS package in Visual Studio 2012. When I click the \"Start\" button I get this very odd error in a popup from Visual Studio:

Method          


        
6条回答
  •  滥情空心
    2020-12-23 12:11

    The following is the command we have to use to resolve the issue:

    "C:\Program Files\Microsoft SDKs\Windows\v8.0A\bin\NETFX 4.0 Tools\gacutil.exe" /if "C:\Program Files\Microsoft Visual Studio 11.0\Common7\IDE\PrivateAssemblies\Microsoft.SqlServer.Dts.Design.dll"

    Make sure that your dll file and Gacutil.exe file locations are correct. It may be different in other systems.

    Note: You should open your “Command Prompt” as an administrator to run the above command.

提交回复
热议问题