I referenced a DLL which contains C# code. When I add the using statement, to script, I keep getting an error message stating that the namespace cannot be found.
The type or namespace name ABCCloud’ could not be found (are you missing a using directive or an assembly reference?)
What other steps can I take to resolve this error?
@ScottC37Make sure you have the DLL and any of its referenced assemblies in the %AppData%\Pegasystems\PublicAssemblies folder (or the installation folder). Then, add a reference to your project with the DLL and any of its dependencies that are not automatically detected. In your script, make sure you reference the namespace in the using section at the top of the script. From there, your script should compile.