I've developed some sets of functions that I use across a variety of custom CIQ apps. I put them in modules and include them with "using".
I'd like to place these in a shared module folder. But I can't figure out the syntax to refer to this folder. The first example works of course, with the module in the same folder as my code. But then I need to duplicate the module for the other projects (apps). Any idea how to refer to a module in a different folder? Standard absolute and relative pathing does not work. Thanks!!
// my personal modules - shared functions
using systemValues as mySys; // WORKS
using ..\SharedModules\systemValues as mySys; // Relative Path does not work
using C:\SHARED_VMWARE\ConnectIQ\MyProjects\SharedModules\systemValues as mySys; // Absolute PAth does not work