fix bad merge that lost removal of net45 from portable app test

This commit is contained in:
Andrew Stanton-Nurse 2016-03-08 14:44:53 -08:00
parent 7b84740e72
commit 12dd8d6112

View file

@ -22,23 +22,15 @@ namespace Microsoft.DotNet.Tools.Builder.Tests
var outputBase = new DirectoryInfo(Path.Combine(testInstance.TestRoot, "bin", "Debug"));
var netstandardappOutput = outputBase.Sub("netstandardapp1.5");
var fxSubdirs = new[] {
netstandardappOutput,
outputBase.Sub("net45")
};
foreach(var fxSubdir in fxSubdirs)
{
fxSubdir.Should()
.Exist().And
.HaveFiles(new[]
{
"BuildTestPortableProject.dll",
"BuildTestPortableProject.pdb"
});
}
netstandardappOutput.Should().HaveFile("BuildTestPortableProject.deps");
netstandardappOutput.Should()
.Exist().And
.HaveFiles(new[]
{
"BuildTestPortableProject.deps",
"BuildTestPortableProject.dll",
"BuildTestPortableProject.pdb"
});
}
}
}