Makes it easy to execute the scripts defined in project.json through Visual Studio's Task Runner Explorer. .NET Core scriptsInside project.json it is possible to add custom scripts inside the "scripts" element. { "scripts": { "postbundle": [ "npm install", "bower install" ], "postpack": "npm install" }} Execute scriptsWhen scripts are specified, the Task Runner Explorer will show those scripts.
Each script can be executed by double-clicking the task. BindingsScript bindings make it possible to associate individual scripts with Visual Studio events such as "After build" etc.
IntellisenseIf you manually edit bindings in project.json, then full Intellisense is provided.
| |