Skip to content

Instantly share code, notes, and snippets.

@chrisrichards
Created April 22, 2016 14:47
Show Gist options
  • Save chrisrichards/720112d60e53b7e804920c5ba35a67da to your computer and use it in GitHub Desktop.
Save chrisrichards/720112d60e53b7e804920c5ba35a67da to your computer and use it in GitHub Desktop.
.Net Core project.json to produce OSX native executable
{
"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