Revert "Revert "Reacting to CLI breaking change""

This reverts commit e74665e550.
This commit is contained in:
Pranav K 2016-04-02 05:50:03 -07:00
parent e74665e550
commit d1c52323f2
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ namespace Microsoft.DotNet.Watcher.Core.Internal
if (File.Exists(projectLockJsonPath))
{
var lockFile = LockFileReader.Read(projectLockJsonPath);
var lockFile = LockFileReader.Read(projectLockJsonPath, designTime: false);
ProjectDependencies = lockFile.ProjectLibraries.Select(dep => GetProjectRelativeFullPath(dep.Path)).ToList();
}
else