37 lines
922 B
JSON
37 lines
922 B
JSON
{
|
|
"version": "1.0.0-*",
|
|
"description": "Command line tool to watch for source file changes during development and restart the dotnet command.",
|
|
"packOptions": {
|
|
"tags": [
|
|
"dotnet",
|
|
"watch"
|
|
]
|
|
},
|
|
"buildOptions": {
|
|
"outputName": "dotnet-watch",
|
|
"warningsAsErrors": true,
|
|
"emitEntryPoint": true,
|
|
"keyFile": "../../tools/Key.snk",
|
|
"nowarn": [
|
|
"CS1591"
|
|
],
|
|
"xmlDoc": true
|
|
},
|
|
"dependencies": {
|
|
"System.Runtime.InteropServices.RuntimeInformation": "4.0.0-*",
|
|
"Microsoft.DotNet.Watcher.Core": "1.0.0-*",
|
|
"Microsoft.Extensions.CommandLineUtils": "1.1.0-*",
|
|
"Microsoft.Extensions.Logging": "1.1.0-*",
|
|
"Microsoft.Extensions.Logging.Console": "1.1.0-*"
|
|
},
|
|
"frameworks": {
|
|
"netcoreapp1.0": {
|
|
"dependencies": {
|
|
"Microsoft.NETCore.App": {
|
|
"type": "platform",
|
|
"version": "1.0.0-*"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |