Question: the problem is that every time I need to use the DateTime class, I have to directly say that System.DateTime is any way around this
Answer: Already answered above - use an alias, for example
using CompanyDateTime = Company.DateTime;
using StandardDateTime = System.DateTime;
Question: Is it possible that CorporateDateTime can automatically expand to the output folder without adding to the link?
Answer. Put this DLL in the root folder of the application and create a postbuild event that copies it to the output folder. You can use the regular DOS COPY command here.
Link to postbuild event information
Insane
source share