Last active
August 29, 2015 14:24
-
-
Save jchannon/85a21618248852b494ba to your computer and use it in GitHub Desktop.
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
"dependencies": { | |
"NugetDependencyThatWorksForAllFwks","9.1.1" | |
}, | |
"frameworks": { | |
"dnx451": {}, | |
"dnxcore50": {} | |
} | |
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
"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