We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b0cfc2 commit 671e2a2Copy full SHA for 671e2a2
test/Microsoft.IdentityModel.AotCompatibility.Tests/AotCompatibilityTests.cs
@@ -54,7 +54,11 @@ public void EnsureAotCompatibility()
54
CreateNoWindow = true,
55
WorkingDirectory = testAppPath
56
};
57
- process.OutputDataReceived += (sender, e) => _testOutputHelper.WriteLine(e.Data);
+ process.OutputDataReceived += (sender, eventArgs) =>
58
+ {
59
+ if (eventArgs.Data is not null)
60
+ _testOutputHelper.WriteLine(eventArgs.Data);
61
+ };
62
process.Start();
63
process.BeginOutputReadLine();
64
0 commit comments