Go to file
Nate McMaster d8607779fd Fix backslashes in yml config.
[ci skip]
2016-03-09 17:44:48 -08:00
src Added Company, Copyright and Product attributes to AssemblyInfo 2016-03-03 17:54:13 -08:00
test Remove extra dependencies that produce NuGet warnings 2016-03-09 12:52:50 -08:00
tools
.gitattributes
.gitignore
.travis.yml Fix backslashes in yml config. 2016-03-09 17:44:48 -08:00
CONTRIBUTING.md
LICENSE.txt
NuGet.config
NuGetPackageVerifier.json Enabled xml doc generation 2016-03-03 12:15:50 -08:00
README.md
appveyor.yml Fix backslashes in yml config. 2016-03-09 17:44:48 -08:00
build.cmd Return the error code from build.cmd 2016-02-28 10:12:21 -08:00
build.ps1 Update the build scripts to the latest version 2016-03-07 20:55:07 -08:00
build.sh Update the build scripts to the latest version 2016-03-07 20:55:07 -08:00
dotnet-watch.sln - E2E test 2016-03-03 13:46:45 -08:00
global.json
makefile.shade

README.md

dnx-watch

dnx-watch is a file watcher for dnx that restarts the specified application when changes in the source code are detected. Its' purpose is to replace dnx --watch.

How To Install

From a console window run the following command dnu commands install Microsoft.Dnx.Watcher Then the dnx-watch command will become available.

To install the latest unstable release add the following parameter to the command --fallbacksource https://myget.org/F/aspnetvnext/api/v3/index.json

How To Use

dnx-watch <arguments>

Example:

  • To run the command kestrel in the current folder: dnx-watch kestrel
  • To run the command kestrel in a different folder: dnx-watch --project C:\myproject --dnx-args kestrel
  • To run the command kestrel in a different folder with extra arguments: dnx-watch --project C:\myproject --dnx-args kestrel arg1 arg2

AppVeyor: AppVeyor

Travis: Travis

Remarks:

  • Everything after --dnx-args is passed to dnx and ignored by the watcher.
  • The watcher always passes --project to dnx. Do not pass it as a --dnx-args argument.

This project is part of ASP.NET 5. You can find samples, documentation and getting started instructions for ASP.NET 5 at the Home repo.