hogueybear
10 years agoOccasional Contributor
How can I share functions across multiple projects within a project suite?
We have a set of functions that we use across all the projects within a project suite. I placed these functions in their own script file within a project and used //USEUNIT functions to include them...
- 10 years ago
did you do like this..?
according to documentations
"Adding an existing test does not create a copy of this test, it just adds a reference to the project. The test file remains in the original project. If you change the imported test in the current project, it will be changed in the original project as well."
- 10 years ago
I did this, but the piece I was missing is that it refers to the file on the disk, so until you do a save the copy is not updated. Once you save it the updates show up across all of the versions.
Thanks for the reply.