Created
April 22, 2016 14:47
-
-
Save chrisrichards/720112d60e53b7e804920c5ba35a67da to your computer and use it in GitHub Desktop.
.Net Core project.json to produce OSX native executable
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-*", | |
"compilationOptions": { | |
"emitEntryPoint": true, | |
"debugType": "portable" | |
}, | |
"runtimes": { | |
"osx.10.11-x64" : {} | |
}, | |
"dependencies": { | |
"Microsoft.NETCore.App": { | |
"type": "build", | |
"version": "1.0.0-*" | |
} | |
}, | |
"frameworks": { | |
"netcoreapp1.0": { | |
"imports": "dnxcore50" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment