Using external methods

Ok, I’m having some difficulty figuring out what should be simple. I know I’m just missing a step somewhere. I’ve created my external DLL and put it in the correct place. I can see it and reference it and its methods from the BPM designer. image

I’ve added my using statement. image

But when I go to enable it and save I get this:
There is at least one compilation error.
Update.Pre.test.cs(13,7): error CS0246: The type or namespace name ‘nonConfBPM’ could not be found (are you missing a using directive or an assembly reference?)

What am I doing wrong here?

hmm. You might need to mess around removing the dll from the folder and re-adding it.
I recall seeing this myself but struggling to remember exactly what I did to repair.
Might need to recycle the IIS pool as well.

2 Likes

I hate to ask the easy questions, but…
Is the class name in your DLL actually nonConfBPM (note that it’s case sensitive)?

1 Like

Thanks for the replies guys. Strangely enough it turned out the problem was the using statement itself. I removed that and everything worked perfectly.