Skip to content

Commit

Permalink
set dependencies to MSBuild dlls as "type": "build" to make them impl…
Browse files Browse the repository at this point in the history
…icit dependencies loaded from GAC, fixes #161
  • Loading branch information
adamsitnik committed May 8, 2016
1 parent c280565 commit 285f774
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions BenchmarkDotNet/project.json
Expand Up @@ -33,9 +33,9 @@
"define": [ "CLASSIC" ]
},
"frameworkAssemblies": {
"Microsoft.Build": "4.0.0.0",
"Microsoft.Build.Framework": "4.0.0.0",
"Microsoft.Build.Utilities.v4.0": "4.0.0.0",
"Microsoft.Build": { "type": "build", "version": "4.0.0.0" },
"Microsoft.Build.Framework": { "type": "build", "version": "4.0.0.0" },
"Microsoft.Build.Utilities.v4.0": { "type": "build", "version": "4.0.0.0" },
"System.Management": "4.0.0.0"
}
},
Expand All @@ -44,9 +44,9 @@
"define": [ "CLASSIC" ]
},
"frameworkAssemblies": {
"Microsoft.Build": "12.0.0.0",
"Microsoft.Build.Framework": "12.0.0.0",
"Microsoft.Build.Utilities.v12.0": "12.0.0.0",
"Microsoft.Build": { "type": "build", "version": "12.0.0.0" },
"Microsoft.Build.Framework": { "type": "build", "version": "12.0.0.0" },
"Microsoft.Build.Utilities.v12.0": { "type": "build", "version": "12.0.0.0" },
"System.Management": "4.0.0.0"
}
},
Expand All @@ -55,9 +55,9 @@
"define": [ "CLASSIC" ]
},
"frameworkAssemblies": {
"Microsoft.Build": "14.0.0.0",
"Microsoft.Build.Framework": "14.0.0.0",
"Microsoft.Build.Utilities.Core": "14.0.0.0",
"Microsoft.Build": { "type": "build", "version": "14.0.0.0" },
"Microsoft.Build.Framework": { "type": "build", "version": "14.0.0.0" },
"Microsoft.Build.Utilities.Core": { "type": "build", "version": "14.0.0.0" },
"System.Management": "4.0.0.0"
}
},
Expand Down

0 comments on commit 285f774

Please sign in to comment.