Skip to content

Instantly share code, notes, and snippets.

@jchannon
Last active August 29, 2015 14:24
Show Gist options
  • Save jchannon/85a21618248852b494ba to your computer and use it in GitHub Desktop.
Save jchannon/85a21618248852b494ba to your computer and use it in GitHub Desktop.
"dependencies": {
"NugetDependencyThatWorksForAllFwks","9.1.1"
},
"frameworks": {
"dnx451": {},
"dnxcore50": {}
}
"dependencies": {
"Microsoft.Composition": "1.0.30" -- Is this nuget dependencies for all frameworks?
},
"frameworks": {
"dnx451": {
"dependencies": { -- Is this nuget just for dnx451?
"Blah"
},
"frameworkAssemblies": {
"System.Globalization": "", --This is GAC for dnx451?
}
},
"dnxcore50": { -- DNXCore doesn't have frameworkAssemblies I believe
"dependencies": {
"System.IO.FileSystem.Watcher": "4.0.0-beta-22605", -- Is this nuget just for dnx50?
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment