How can I use NuGet with SSDT?

后端 未结 1 1049
感动是毒
感动是毒 2021-01-22 08:57

I am working on an Integration Services project. One of the data sources I use calls for a package to be installed from NuGet. I tried to go to "Tools > NuGet Package Ma

1条回答
  •  温柔的废话
    2021-01-22 09:30

    The SSIS project type doesn't support Nuget.

    It is possible to add a nuget reference to the csproj associated with a script task, but this may cause further discomfort at deployment time.

    You can download nuget.exe by itself from nuget.org and install packages from the command line, but given the "special" requirements for installing external dlls used by SSIS it might be as easy to find a non-nuget source for the component you need.

    0 讨论(0)
提交回复
热议问题