Remove IsLoadable from Project

This commit is contained in:
David Fowler 2015-10-17 08:05:35 -07:00
parent fe3a9d1332
commit b2ebe529bd
4 changed files with 2 additions and 13 deletions

View file

@ -51,13 +51,6 @@ namespace Microsoft.Extensions.ProjectModel.Resolution
var dependencies = project.Dependencies.Concat(targetFrameworkDependencies).ToList();
var loadableAssemblies = new List<string>();
if (project.IsLoadable)
{
loadableAssemblies.Add(project.Name);
}
// Mark the library as unresolved if there were specified frameworks
// and none of them resolved
bool unresolved = targetFrameworkInfo.FrameworkName == null;
@ -66,7 +59,6 @@ namespace Microsoft.Extensions.ProjectModel.Resolution
new LibraryRange(project.Name, LibraryType.Unspecified),
project,
dependencies,
loadableAssemblies,
targetFrameworkInfo,
!unresolved);
}