Revert "Temporarily remove compiling against non roslyn project references"

This reverts commit 088bcac028.
This commit is contained in:
Troy Dai 2015-04-28 10:51:38 -07:00
parent b5b37265e1
commit 97a3c47928
1 changed files with 0 additions and 3 deletions

View File

@ -233,8 +233,6 @@ 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)
{ {
@ -245,7 +243,6 @@ namespace Microsoft.AspNet.Mvc.Razor.Compilation
return MetadataReference.CreateFromImage(ms.ToArray()); return MetadataReference.CreateFromImage(ms.ToArray());
} }
} }
*/
throw new NotSupportedException(); throw new NotSupportedException();
} }