У нас был пакет служб SSIS, который мы использовали для загрузки некоторых файлов Excel из SharePoint и загрузки их в базу данных On-Prem SQL. Пакет извлекает файлы из Sharepoint, имеющие значение Pending в поле Status, обрабатывает файл и обновляет статус как Completed обратно в точку общего доступа.
Раньше он работал идеально, когда он был в On-Prem Недавно мы перенесли то же самое на Azure и изменили метод развертывания с Файловой системы на Каталог служб SSIS. Теперь, когда мы пытаемся развернуть пакет в каталоге, мы получаем следующую ошибку:
Error:
1. Failed to compiled scripts contained in the package. Open the package in SSIS Designer and resolve the compilation errors.
2. CS0234 - The type or namespace name 'SharePoint' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?), ScriptMain.cs, 16, 17
3. CS0234 - The type or namespace name 'SharePoint' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?), ScriptMain.cs, 17, 22
4. CS0305 - Using the generic type 'System.Collections.Generic.List<T>' requires 1 type arguments, ScriptMain.cs, 215, 35
5. CS0246 - The type or namespace name 'ClientContext' could not be found (are you missing a using directive or an assembly reference?), ScriptMain.cs, 215, 48
6. The binary code for the script is not found. Please open the script in the designer by clicking Edit Script button and make sure it builds successfully
Любая помощь очень ценится. Заранее спасибо