In my project.json
, I need to refer to a library that I'm using during development, but don't want included in the project output. This is common for things like static analyzers and other tools.
Before project.json
, this was handled by a metadata tag in the package .nuspec
file. But, this no longer works (as far as I know) for projects following the new JSON standard.
How do I declare a development-only dependency in the new standard?