asp.net core - dnx-watch stopped working and throwing ArgumentException because directory was not found -
i have asp.net core (rc1 final) solution multiple projects. have web project in c:\projects\mysolution\src\web , multiple class lib projects in c:\projects\mysolution\src. class libs added project references in web app.
i've been running web app using dnx-watch web
long time without problems, it's crashing following exception:
c:\projects\mysolution\src\web > dnx-watch web [dnxwatcher] info: running dnx following arguments: --project c:\projects\mysolution\src\web\project.json web [dnxwatcher] info: dnx process id: 40668 system.argumentexception: directory name c:\projects\mysolution\src\multitenancy\project.json invalid. @ system.io.filesystemwatcher..ctor(string path, string filter) @ system.io.filesystemwatcher..ctor(string path) @ microsoft.dnx.watcher.core.filewatcher.addwatcher(string path) @ microsoft.dnx.watcher.core.filewatcher.watchproject(string projectpath) @ microsoft.dnx.watcher.core.dnxwatcher.addprojectanddependeciestowatcher(iproject project, ifilewatcher filewatcher) @ microsoft.dnx.watcher.core.dnxwatcher.addprojectanddependeciestowatcher(iproject project, ifilewatcher filewatcher) @ microsoft.dnx.watcher.core.dnxwatcher.<waitforprojectfiletochangeasync>d__7.movenext()
it looks dnx-watch trying interpret project.json directory. i'm not sure why behavior has changed. suspect happened after added project reference web project, i'm not able working condition.
i know (hope) rc2 , dotnet cli right around corner, nice working before can switch..
Comments
Post a Comment