Hi there !
I have a
VB.net application ("MyApp") who needs to use code stored in another folder, where I have (common) procedures used by lots of other projects. I don't want to copy those in my particular app's folder, but I would like to include them in my Solution and compile them at compile time.
I tried to do this by building a Solution with 2 Projects, "Common" and "MyApp", and compile the Projects in the correct order - first Common, and then MyApp. IT DOESN'T WORK !
Any call from MyApp of a procedure stored in Common generates an error; any reference to a data type defined in Common generates an error... etc. MyApp doesn't "see" Common, as if they were 2 completely separate entities.
So how do I do this in
VB.net ?
TIA