Revert "Reacting to CLI breaking change"

This reverts commit 4788506b57.
This commit is contained in:
ryanbrandenburg 2016-04-01 16:05:28 -07:00
parent 4ddf7c2cc7
commit e74665e550
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, designTime: false);
var lockFile = LockFileReader.Read(projectLockJsonPath);
ProjectDependencies = lockFile.ProjectLibraries.Select(dep => GetProjectRelativeFullPath(dep.Path)).ToList();
}
else