You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 8, 2020. It is now read-only.
@SteveSanderson Is this really the correct fix?
When running on my local devbox under IIS Express I needed to add this call into NodeServices configuration: options.ProjectPath = Server.MapPath("~/");
2 commit comments
poimis commentedon Dec 18, 2017
@SteveSanderson Is this really the correct fix?
When running on my local devbox under IIS Express I needed to add this call into NodeServices configuration:
options.ProjectPath = Server.MapPath("~/");
SteveSandersonMS commentedon Jan 2, 2018
@poimis It's the correctest fix that I know of. Using
Server.MapPath
would not be a valid approach for non-web projects.