Last active
March 7, 2016 20:23
-
-
Save lukasz-pyrzyk/6c3271fd8950f0e53447 to your computer and use it in GitHub Desktop.
project.json of Console App (.NET Core RC1)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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