Skip to content

Instantly share code, notes, and snippets.

@lukasz-pyrzyk
Last active March 7, 2016 20:23
Show Gist options
  • Save lukasz-pyrzyk/6c3271fd8950f0e53447 to your computer and use it in GitHub Desktop.
Save lukasz-pyrzyk/6c3271fd8950f0e53447 to your computer and use it in GitHub Desktop.
project.json of Console App (.NET Core RC1)
{
"version": "1.0.0-*"
"description": "SampleConsole Console Application",
"authors": [ "lpyrz" ],
"tags": [ "" ],
"projectUrl": "",
"licenseUrl": "",
"compilationOptions": {
"emitEntryPoint": true
},
"dependencies": {
"library": "version"
},
"commands": {
"SampleConsole": "SampleConsole"
},
"frameworks": {
"dnx451": { },
"dnxcore50": {
"dependencies": {
"Microsoft.CSharp": "4.0.1-beta-23516",
"System.Collections": "4.0.11-beta-23516",
"System.Console": "4.0.0-beta-23516",
"System.Linq": "4.0.1-beta-23516",
"System.Threading": "4.0.11-beta-23516"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment