Updated RoslynCompilationService to account for new changes to API

This commit is contained in:
David Fowler 2014-03-16 23:42:50 -07:00
parent 1a430f90ed
commit 0247c3a393
2 changed files with 5 additions and 5 deletions

View File

@ -35,7 +35,7 @@ namespace Microsoft.AspNet.Mvc.Razor.Compilation
var assemblyName = Path.GetRandomFileName();
var compilation = CSharpCompilation.Create(assemblyName,
new CSharpCompilationOptions(OutputKind.DynamicallyLinkedLibrary),
options: new CSharpCompilationOptions(OutputKind.DynamicallyLinkedLibrary),
syntaxTrees: syntaxTrees,
references: references);

View File

@ -10,10 +10,10 @@
"Microsoft.AspNet.Mvc.ModelBinding" : "",
"Microsoft.AspNet.Mvc.Rendering" : "",
"Microsoft.AspNet.Mvc.Razor.Host" : "",
"Microsoft.CodeAnalysis.Common" : "0.6.4021001-beta",
"Microsoft.CodeAnalysis.CSharp" : "0.6.4021001-beta",
"System.Reflection.Metadata.Ecma335": "0.6.4021001-beta",
"Microsoft.Bcl.Immutable": "1.1.17-beta"
"Microsoft.CodeAnalysis.Common" : "0.7-beta-*",
"Microsoft.CodeAnalysis.CSharp" : "0.7-beta-*",
"System.Reflection.Metadata.Ecma335": "0.7-beta-*",
"Microsoft.Bcl.Immutable": "1.1.18-beta"
},
"configurations": {
"net45": {