Bart Koelman
Bart Koelman
The workaround fails with the following error: ``` Failed to parse entitlements: AMFIUnserializeXML: syntax error near line 7 ``` File contents at https://github.com/SteeltoeOSS/Steeltoe/blob/update-xunit-mtp2/mtp-test-entitlements.plist.
> > Looking at the dump files themselves, I don't see any reference to the code causing the stack overflow in VS. Tried Run Diagnostic Analysis, Crash, which reports no...
I don't have experience with windbg/sos commands, so I'm trying to use higher-level tools to help me. Tried JetBrains dotMemory, which doesn't show anything related to a stack overflow. Took...
Taking the literal contents of `mtp-test-entitlements.plist` fixed the earlier `AMFIUnserializeXML` error; apparently, it is sensitive to whitespace. The job completes now, but it looks like it has the same issue...
I've set up crash dump creation in GitHub Actions using xUnit v3 with MTPv2 and compared it with our current configuration, which uses xUnit v3 with VSTest. What they have...
Well, just take a look in the zip. It's all .NET only.
Just to clarify, your log files _don't_ contain a `NullReferenceException`, and a non-empty coverage report is being produced?
Thanks for investigating. We have a workaround in place; we'll wait for the next version.
Added a `nuget.config`: ```xml ``` And updated the project reference to: ```xml all runtime; build; native; contentfiles; analyzers; buildtransitive ``` Still the same crash: ```text TpTrace Warning: 0 : 29396,...
> Either of these should produce logs for the config server That's not how it works. See test [Can_override_minimum_level](https://github.com/SteeltoeOSS/Steeltoe/blob/254b5c6fcf01ddf1b0baf5ce46adf4844d178e0d/src/Common/test/Logging.Test/BootstrapperLoggerFactoryTest.cs#L70). The default minimum level in .NET is `Information`. This can be...