We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3be6cbf commit bff8a4eCopy full SHA for bff8a4e
1 file changed
src/Build/BuildCheck/Infrastructure/BuildEventsProcessor.cs
@@ -200,7 +200,11 @@ private static void ReportResult(
200
}
201
202
BuildEventArgs eventArgs = result.ToEventArgs(config.Severity);
203
- eventArgs.BuildEventContext = loggingContext.BuildEventContext;
+
204
+ // TODO: This is a workaround for https://github.com/dotnet/msbuild/issues/10176
205
+ // eventArgs.BuildEventContext = loggingContext.BuildEventContext;
206
+ eventArgs.BuildEventContext = BuildEventContext.Invalid;
207
208
loggingContext.LogBuildEvent(eventArgs);
209
210
0 commit comments