Temporarily remove compiling against non roslyn project references

This commit is contained in:
David Fowler 2015-04-26 00:18:58 -07:00
parent 955b45f995
commit 088bcac028
1 changed files with 3 additions and 0 deletions

View File

@ -233,6 +233,8 @@ namespace Microsoft.AspNet.Mvc.Razor.Compilation
return CreateMetadataFileReference(fileMetadataReference.Path); return CreateMetadataFileReference(fileMetadataReference.Path);
} }
/*
TODO: Bring this back once we fix https://github.com/aspnet/dnx/issues/922
var projectReference = metadataReference as IMetadataProjectReference; var projectReference = metadataReference as IMetadataProjectReference;
if (projectReference != null) if (projectReference != null)
{ {
@ -243,6 +245,7 @@ namespace Microsoft.AspNet.Mvc.Razor.Compilation
return MetadataReference.CreateFromImage(ms.ToArray()); return MetadataReference.CreateFromImage(ms.ToArray());
} }
} }
*/
throw new NotSupportedException(); throw new NotSupportedException();
} }