I have a self hosted ServiceStack application which I intend to use to develop an angular application with.
The problem is, previously, every time I\'ve made a change to
The issue is that he was changing the source file and not the output file. Since SS copies the files to /bin/debug
he needed to change that version.
Using HostConfig settings, we were able to to use the WebHostPhysicalPath
property in the following way during development, while setting up the SS Config:
SetConfig(new HostConfig {
#if DEBUG
DebugMode = true,
WebHostPhysicalPath = Path.GetFullPath(Path.Combine("~".MapServerPath(), "..", "..")),
#endif
});
This took us out of /bin/debug
and back to the source.