c# - how to use namespace of external project? -
currently :
i have following using in program.
using mtx;
which allows me use mtx.* properties. refers file in "externals" folder.
path : externals/mtx.dll
needed :
however, debugging purposes, i'd have whole mtx solution in external , use it.
path : externals/mtx/(solution in there folders)
how can so, instead of using refers mtx.dll
, refers solution , build has part of own?
i think misunderstanding concepts , mixing things. let me explain own explanation:
i have following using in program.
using mtx; allows me use mtx.* properties. refers file in "externals" folder.
path : externals/mtx.dll
the using
keyword allows use classes inside namespace without typing whole namespace everytime. has nothing dll classes, can use public dlls insidea class using whole namespace + class name adding project reference.
needed :
however, debugging purposes, i'd have whole mtx solution in external , use it
for debugging purposes need pdb's of dlls used , able debug class considering have source code without changing else.
Comments
Post a Comment