Fixing build break with latest NuGet packages.
This commit is contained in:
parent
465655c85a
commit
6f506b331c
2 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ namespace Microsoft.DotNet.Cli.Utils
|
|||
public DepsJsonBuilder()
|
||||
{
|
||||
// This resolver is only used for building file names, so that base path is not required.
|
||||
_versionFolderPathResolver = new VersionFolderPathResolver(path: null);
|
||||
_versionFolderPathResolver = new VersionFolderPathResolver(rootPath: null);
|
||||
}
|
||||
|
||||
public DependencyContext Build(
|
||||
|
|
|
@ -28,7 +28,7 @@ namespace Microsoft.DotNet.Internal.ProjectModel.Resolution
|
|||
_packagePathResolver = new FallbackPackagePathResolver(nugetPathContext);
|
||||
|
||||
// This resolver is only used for building file names, so that base path is not required.
|
||||
_versionFolderPathResolver = new VersionFolderPathResolver(path: null);
|
||||
_versionFolderPathResolver = new VersionFolderPathResolver(rootPath: null);
|
||||
}
|
||||
|
||||
_frameworkReferenceResolver = frameworkReferenceResolver;
|
||||
|
|
Loading…
Reference in a new issue