abiosoft / DevReload

Auto reload for ASP.NET core development

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Directory value from configuration seems not to be taken into consideration

ChaosEngine opened this issue · comments

commented

As seen here

_watcher.Path = "./wwwroot";

nevertheless what is set up in DevReloadOptions.Directory in the end

"./wwwroot"

is going to be used.

Consider changing this line to

_watcher.Path = _options.Directory;