I have a project for the DLL file. Should I be storing the project file to its own folder in Vault? If so, how do I link the common.cls in the main project (for the desktop app) to the folder that contains the project for the DLL file? Would it be better to just store the DLL project file in with the rest of the files with the desktop app?
Thus, I'm looking at two solutions here and am not sure which is best:
$/DesktopApp
|--Desktop app.vbp file
|--All other files associated with Desktop app
|--common.cls
|--DLL file.vbp file
-or-
$/DesktopApp
|--Desktop app.vbp file
|--All other files associated with Desktop app
|--common.cls
$/DLLFile
|--DLL File.vbp file
|--common.cls (somehow linked back to $/DesktopApp folder)
My reason for wanting the link is obvious...I want any changes made to the common.cls file in the desktop app to be reflected in the DLL version of the same file.
Help, I'm new at this stuff.

Thanks!
Mike