Skip to content

Commit 00ba716

Browse files
Instructions for adding MSBuild fast paths (#49477)
1 parent d1954f3 commit 00ba716

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/Microsoft.NET.Build.Tests/EvaluatorFastPathTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public void EnsureDotnetCommonProjectPropertyFunctionsOnFastPath(string alias)
5757
var toolLocationHelper_GetPlatformSDKDisplayName = "ReceiverType=Microsoft.Build.Utilities.ToolLocationHelper; ObjectInstanceType=; MethodName=GetPlatformSDKDisplayName(String, String)";
5858
var lines = File.ReadAllLines(logPath);
5959
var allOnFastPathWithExceptions = lines.All(l => (toolLocationHelper_GetPlatformSDKLocation.Equals(l) || toolLocationHelper_GetPlatformSDKDisplayName.Equals(l)));
60-
allOnFastPathWithExceptions.Should().BeTrue();
60+
allOnFastPathWithExceptions.Should().BeTrue("If this test fails, file a bug to add the new fast path in MSBuild like https://github.com/dotnet/msbuild/issues/12029. You may add an exclusion with a comment in this test while that is in process.");
6161
}
6262
}
6363
}

0 commit comments

Comments
 (0)