You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Write-Host"The solution zip file '$secondLevelZipFile' in '$originalParentFolderPath' should contain '$folderNameMissing"
462
+
Write-Host"The solution zip file '$secondLevelZipFile' in '$originalParentFolderPath' should contain '$folderNameMissing'"
459
463
Write-Host"The folders should match the customization.xml file. They are present by default in an exported solution and should not be modified/removed manually."
460
464
Write-Host"Please add the required folders to the solution zip or export the correct solution again."
Write-Host"Connector solution in '$originalParentFolderPath' is invalid. Connector solution should only contain 'Connector' folder."
475
478
Write-Host"Validate the connector solution has no extra component except 'Connector'. If not so, please remove them from the solution and export again."
Write-Host"Plugin solution in '$originalParentFolderPath' is invalid. Plugin solution should contain 'Connector', 'aiplugins' and 'aipluginoperations' folders."
485
-
Write-Host"Validate the plugin solution has 'Connector', 'aiplugins' and 'aipluginoperations' components. If not so, please recreate the solution and export again."
487
+
if ($isWorkflowsInPlugin) {
488
+
$errorMessagePlugin="Plugin solution should not contain 'Workflows' folder."
489
+
} else {
490
+
$errorMessagePlugin="Plugin solution should contain 'Connector', 'aiplugins' and 'aipluginoperations' folders."
491
+
}
492
+
Write-Host"Plugin solution in '$originalParentFolderPath' is invalid."
493
+
Write-Host"$errorMessagePlugin"
494
+
Write-Host"Validate the plugin solution has only 'Connector', 'aiplugins' and 'aipluginoperations' components. If not so, please recreate the solution and export again."
0 commit comments