Skip to content

Commit

Permalink
Make all framework assemblies be build targets as a fix NuGet/Home#3103
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Hathcock committed Jul 22, 2016
1 parent 6e3e834 commit 89fd778
Showing 1 changed file with 14 additions and 15 deletions.
29 changes: 14 additions & 15 deletions src/SharpCompress/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@
"define": [ "NO_FILE", "NO_CRYPTO", "SILVERLIGHT" ]
},
"frameworkAssemblies": {
"mscorlib": "",
"System": "",
"System.Core": ""
"mscorlib": { "type": "build" },
"System": { "type": "build" },
"System.Core": { "type": "build" }
}
},
".NETPortable,Version=v4.5,Profile=Profile259": {
Expand All @@ -49,18 +49,17 @@
"define": [ "NO_FILE", "NO_CRYPTO", "SILVERLIGHT" ]
},
"frameworkAssemblies": {
"Microsoft.CSharp": "",
"System": "",
"System.Collections": "",
"System.Core": "",
"System.Diagnostics.Debug": "",
"System.IO": "",
"System.Linq": "",
"System.Linq.Expressions": "",
"System.Resources.ResourceManager": "",
"System.Runtime": "",
"System.Runtime.Extensions": "",
"System.Text.Encoding": ""
"System": { "type": "build" },
"System.Collections": { "type": "build" },
"System.Core": { "type": "build" },
"System.Diagnostics.Debug": { "type": "build" },
"System.IO": { "type": "build" },
"System.Linq": { "type": "build" },
"System.Linq.Expressions": { "type": "build" },
"System.Resources.ResourceManager": { "type": "build" },
"System.Runtime": { "type": "build" },
"System.Runtime.Extensions": { "type": "build" },
"System.Text.Encoding": { "type": "build" }
}
},
"netstandard1.0": {
Expand Down

0 comments on commit 89fd778

Please sign in to comment.