Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tdshipley/249e1c19d1a794db917b513b912cc0e4 to your computer and use it in GitHub Desktop.
Save tdshipley/249e1c19d1a794db917b513b912cc0e4 to your computer and use it in GitHub Desktop.
Ignore node modules in a ASP.NET Core CR2 project
{
"buildOptions": {
"emitEntryPoint": true,
"preserveCompilationContext": true,
"compile": {
"exclude": [ "node_modules" ]
}
},
"tools": {
"SomeToolsRemovedForBrevity": true
},
"frameworks": {
"netcoreapp1.0": {
"imports": [
"dotnet5.6",
"dnxcore50",
"portable-net45+win8"
]
}
},
"dependencies": {
"SomeDependenciesRemovedForBrevity": true
},
"publishOptions": {
"include": [
"wwwroot",
"node_modules",
"**.user",
"**.vspscc"
]
},
"scripts": {
"prepublish": [ "some", "prepublish", "steps" ],
"watch": [ "gulp watch" ]
},
"userSecretsId": "somescerets",
"version": "1.0.1-*"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment