We got a Azure Service Fabric solution in VS2015 including a number of statefull actors and a website.
As the website is interacting with the actors, the entire local cluster needs to be started before I can run (and debug) the website. I takes about 4 minutes to get everything running!! Most of my changes are performed in the website and I rarely alter the code behind the actors.
Question: Is there a way to run (and debug) the website without rebuilding the entire local serviceFabric cluster?
If I set the web project as startup-project and hit f5 i get a "ReflectionTypeLoadException" when running. If I disable the code which interact with the actors, it runs fine.