I have a solution with two projects:
MainApp
PlugIn
The PlugIn
is not referenced by the MainApp
but loaded dynamically after the MainApp
started.
I now have the issue that when I change something in the PlugIn
and press F5
, the MainApp
starts but loads an old version of the PlugIn
and I have to explicitly click on it with the right mouse button and rebuild it.
Do you know some trick how I can force Visual Studio
to rebuild all projects in a solution regardless whether they are referenced somewhere or not when I press F5
?