Last active
April 18, 2016 16:44
-
-
Save nbarbettini/2c436b02bd7bf86d2d5742950a2c87f8 to your computer and use it in GitHub Desktop.
Minimal example of project.json for a console application
This file contains hidden or 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
{ | |
"frameworks": { | |
"dnxcore50": { | |
"dependencies": { | |
"Microsoft.CSharp": "4.0.1-beta-23516", | |
"System.Console": "4.0.0-beta-23516", | |
"System.Threading.Tasks": "4.0.11-beta-23516" | |
} | |
} | |
}, | |
"commands": { | |
"run": "HelloWorld" | |
}, | |
"dependencies": { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment