I followed the instruction but still failed to start. What I did:
dnu install kmon
Modify the command in Project.json:
"commands": {
"web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:5000",
"kestrel": "Microsoft.AspNet.Hosting --server Kestrel --server.urls http://localhost:5001",
"gen": "Microsoft.Framework.CodeGeneration",
"mon" : "kmon --ext cs,json,js,cshtml --server kestrel"
}
When I run dnx . mon, I got the following error message:
Error: Unable to load application or execute command '.'. Available commands: web, kestrel, gen, mon.
But When I run dnx mon, I got:
Starting dnx . --watch web, will restart it if it stops. Press Ctrl+C to quit.
Error: Unable to load application or execute command '.'. Available commands: web, kestrel, gen, mon.
Process stopped with exitcode 1
Restarting...
I'm running this in my mac OS X with the latest kmon(0.51 beta). Can you help? Thanks.
I followed the instruction but still failed to start. What I did:
Modify the command in Project.json:
"commands": { "web": "Microsoft.AspNet.Hosting --server Microsoft.AspNet.Server.WebListener --server.urls http://localhost:5000", "kestrel": "Microsoft.AspNet.Hosting --server Kestrel --server.urls http://localhost:5001", "gen": "Microsoft.Framework.CodeGeneration", "mon" : "kmon --ext cs,json,js,cshtml --server kestrel" } When I run dnx . mon, I got the following error message:
But When I run dnx mon, I got:
I'm running this in my mac OS X with the latest kmon(0.51 beta). Can you help? Thanks.