Removed unused variables
This commit is contained in:
parent
0c5464fa8c
commit
f24aeae6b2
2 changed files with 2 additions and 3 deletions
|
@ -110,7 +110,7 @@ namespace Microsoft.Extensions.ProjectModel
|
||||||
}
|
}
|
||||||
|
|
||||||
// Create a library manager
|
// Create a library manager
|
||||||
var libraryManager = new LibraryManager(Project.ProjectFilePath, TargetFramework, libraries.Values.ToList(), diagnostics);
|
var libraryManager = new LibraryManager(Project.ProjectFilePath, libraries.Values.ToList(), diagnostics);
|
||||||
|
|
||||||
return new ProjectContext(
|
return new ProjectContext(
|
||||||
GlobalSettings,
|
GlobalSettings,
|
||||||
|
|
|
@ -15,7 +15,6 @@ namespace Microsoft.Extensions.ProjectModel.Resolution
|
||||||
private readonly string _projectPath;
|
private readonly string _projectPath;
|
||||||
|
|
||||||
public LibraryManager(string projectPath,
|
public LibraryManager(string projectPath,
|
||||||
NuGetFramework targetFramework,
|
|
||||||
IList<LibraryDescription> libraries,
|
IList<LibraryDescription> libraries,
|
||||||
IList<DiagnosticMessage> diagnostics)
|
IList<DiagnosticMessage> diagnostics)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue