Here is code snippet:
extern alias customerRead;
extern alias customerEdit;
extern alias customerSearch;
using readC = customerRead::X.Y.DataAccess;
using editC = customerEdit::X.Y.DataAccess;
using searchC = customerSearch::X.Y.DataAccess;
...
readC.Customer c = new readC.Customer();
c. // NO CODE COMPLETITION
I have aliases for all three projects in .project file and compiling from the IDE goes well.
The assembly containing the aliased namespace is specified on the compiler command line as opposed to in a source document. I assume the issues here are: