Fixing the expected path to the generateDeps.proj file, now that the SDK moved away from the build folder.

This commit is contained in:
Livar Cunha 2018-02-28 13:20:17 -08:00
parent a631900fa7
commit 9c5c453da5

View file

@ -457,7 +457,7 @@ namespace Microsoft.DotNet.Tests
{
// When using the product, the ToolDepsJsonGeneratorProject property is used to get this path, but for testing
// we'll hard code the path inside the SDK since we don't have a project to evaluate here
return Path.Combine(new RepoDirectoriesProvider().Stage2Sdk, "Sdks", "Microsoft.NET.Sdk", "build", "GenerateDeps", "GenerateDeps.proj");
return Path.Combine(new RepoDirectoriesProvider().Stage2Sdk, "Sdks", "Microsoft.NET.Sdk", "targets", "GenerateDeps", "GenerateDeps.proj");
}
}
}