Go to file
Victor Hurdugaci 618e41fa1e Update the documentation to "dotnet-watch" 2016-03-10 11:47:43 -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 dnx-watch -> dotnet-watch 2016-02-16 15:33:20 -08:00
.gitignore Ignore .vs/ 2016-02-19 16:55:51 -08:00
.travis.yml Fix backslashes in yml config. 2016-03-09 17:44:48 -08:00
CONTRIBUTING.md
LICENSE.txt
NuGet.config dnx-watch -> dotnet-watch 2016-02-16 15:33:20 -08:00
NuGetPackageVerifier.json Enabled xml doc generation 2016-03-03 12:15:50 -08:00
README.md Update the documentation to "dotnet-watch" 2016-03-10 11:47:43 -08:00
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

dotnet-watch

dotnet-watch is a file watcher for dotnet that restarts the specified application when changes in the source code are detected.

How To Install

Add dotnet-watch to the tools section of your project.json file:

{
...
  "tools": {
    "dotnet-watch": "1.0.0-*"
  }
...
}

How To Use

dotnet watch <watcher args> -- <app args>

  • dotnet watch (runs the application without arguments)
  • dotnet watch foo bar (runs the application with the arguments foo bar)
  • dotnet watch --exit-on-change -- foo bar (runs the application with the arguments foo bar. In addition, it passes --exit-on-change to the watcher).
  • dotnet watch --command test -- -parallel none (runs dotnet test with the arguments -parallel none)

AppVeyor: AppVeyor

Travis: Travis

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.