Address PR comments
This commit is contained in:
parent
037da3fc01
commit
3821d39d6c
5 changed files with 88 additions and 31 deletions
|
@ -72,12 +72,12 @@ namespace Microsoft.DotNet.Migration.Tests
|
|||
|
||||
new DotnetCommand()
|
||||
.WithWorkingDirectory(projectDirectory)
|
||||
.Execute("build")
|
||||
.Execute("build -c Debug")
|
||||
.Should().Pass();
|
||||
|
||||
new DotnetCommand()
|
||||
.WithWorkingDirectory(projectDirectory)
|
||||
.Execute("pack")
|
||||
.Execute("pack -c Debug")
|
||||
.Should().Pass();
|
||||
|
||||
var outputDir = projectDirectory.GetDirectory("bin", "Debug");
|
||||
|
@ -212,12 +212,12 @@ namespace Microsoft.DotNet.Migration.Tests
|
|||
|
||||
new DotnetCommand()
|
||||
.WithWorkingDirectory(projectDirectory)
|
||||
.Execute("build")
|
||||
.Execute("build -c Debug")
|
||||
.Should().Pass();
|
||||
|
||||
new DotnetCommand()
|
||||
.WithWorkingDirectory(projectDirectory)
|
||||
.Execute("publish")
|
||||
.Execute("publish -c Debug")
|
||||
.Should().Pass();
|
||||
|
||||
var outputDir = projectDirectory.GetDirectory("bin", "Debug", "netcoreapp1.0");
|
||||
|
|
Reference in a new issue