Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ public void It_uses_hintpath_when_replacing_simple_name_references(bool useFacad
.Should().Be(correctHttpReference);
}

[FullMSBuildOnlyFact]
[Fact]
public void It_tolerates_newline_in_hint_path()
{
string hintPath = BuildReferencedBuildAndReturnOutputDllPath();
Expand Down Expand Up @@ -417,7 +417,7 @@ public void It_tolerates_newline_in_hint_path()
var buildCommand = new BuildCommand(Log, Path.Combine(testAsset.TestRoot, project.Name));
var msbuildBuildCommand = new MSBuildCommand(Log, "Build", buildCommand.FullPathProjectFile);
msbuildBuildCommand.Execute().Should().Pass()
.And.NotHaveStdOutContaining("Illegal characters in path");
.And.NotHaveStdOutContaining("System.ArgumentException");
}

private string BuildReferencedBuildAndReturnOutputDllPath()
Expand Down