I'm wondering if somebody had a same issue with project building: So, I have a solution where I have one main project and second project with is not referenced directly by main app
mianApp.csproj plugin.csproj
during a build process I'm building mainApp to 'publish' direcotry and plugin.dll is copied by post build event to 'publish\plugins'. When application starts loads plugin.dll dynamically.
The main problem is that when I change something in plugin.csproj always need to Rebuild whole solution, when I'm running app in Debug after Build, I'm always getting information that my source file was changed and any breakpoint cannot be hit. Is there any solution for this?