Attempting to actually fix the build this time. We were not pointing to the right packages cache before.

This commit is contained in:
Livar Cunha 2016-11-01 12:46:29 -07:00
parent a95ddb4074
commit c7858afc48
5 changed files with 16 additions and 24 deletions

View file

@ -122,6 +122,7 @@ namespace Microsoft.DotNet.Cli.Utils.Tests
var buildCommand = new BuildCommand()
.WithWorkingDirectory(testInstance.Root)
.WithConfiguration(configuration)
.WithRuntime(runtime)
.WithCapturedOutput()
.Execute()
.Should().Pass();
@ -160,6 +161,7 @@ namespace Microsoft.DotNet.Cli.Utils.Tests
var buildCommand = new BuildCommand()
.WithWorkingDirectory(testInstance.Root)
.WithConfiguration(configuration)
.WithRuntime(runtime)
.WithCapturedOutput()
.Execute()
.Should().Pass();