c# - Create Two Executables from Single Project in Visual Studio? -
i have solution in visual studio 2012 has 2 projects:
main application settings applicationthey both reference same info file , utilize same info model files (in main application project).
what i'd allow user either open settings application interdependently or open setting window within main application. way can modify settings while application running, or not. also, changes made while running instantly reflected.
i tried adding settings application project dependency main application, open window, create circular dependency; because setting application relies on main apps info model.
how can tidy code allow user open settings window within application or via external executable?
you should have 3 projects:
shared info model class library main application ui settings uithat way main ui can depend on settings ui without causing circular dependency.
or of course of study set 3 within same single executable project, , not have settings ui separate binary...
c# visual-studio
No comments:
Post a Comment