vvdb-architecture
vvdb-architecture
Throwing exceptions in Dispose() is bad form. See https://docs.microsoft.com/en-us/dotnet/fundamentals/code-analysis/quality-rules/ca1065 Or https://docs.microsoft.com/en-us/dotnet/api/system.idisposable.dispose?view=net-6.0: > If an object's [Dispose](https://docs.microsoft.com/en-us/dotnet/api/system.idisposable.dispose?view=net-6.0) method is called more than once, the object must ignore all calls after the...
Same thing happed to me. VS 2022 v17.2.5, dotnet 6.0
Another workaround: Derive from WebApplicationFactory if you aren't already, and add the following: ~~~csharp private static readonly object _lock = new(); /// /// There is a problem with using Serilog's...
Perhaps there is another way of reformulating this request: redesign the next version of Hangfire to refactor the serialization (what is now [SerializationHelper](https://github.com/HangfireIO/Hangfire/blob/master/src/Hangfire.Core/Common/SerializationHelper.cs) into a pluggable component. which can be...
v13 always initialized `_baseUrl` with `"{{ BaseUrl }}"`. If I understand @RicoSuter well, the the pull request he refers to and became part of v14 simply removed that initialization. Hence...
Hi @nh43de, thanks for the reply. Sadly, setting `defaultResponseReferenceTypeNullHandling = "NotNull"` didn't make any difference. And the other `xxxTypeNullHandling` were already `"NotNull"`. Neither did setting ` document.RequireParametersWithoutDefault = true;` since...
Thanks, @ajcvickers. Too bad I didn't see this in the list of breaking changes. It would have saved me a couple of days of debugging. So: it looks like you...
@adam-clauss : indeed. The issue is very similar. I can confirm what happens. The exception: ~~~ 15>System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. 15> ---> System.InvalidOperationException:...
Does anyone know who to contact/who to beg to to release an updated NSwag with the latest changes of Namotion.Reflection to correct this bug and #4918 ? This is really...
> Please remember that you can always patch any parts of the toolchain and compile your own version for your internal use. That's simple in theory, but difficult in practice....