Jonas Nyrup
Jonas Nyrup
Given this model ```cs [MemoryPackable] public partial class DefaultValue { public string? StringValue { get; set; } } ``` The following input triggers an `AccessViolationException` in `MemoryPackReader.ReadString()`. ```cs var input...
I tried upgrading NSwag.Commands from 14.0.7 to 14.0.8 for a project running .net6 which then failed with the following exception: ``` Could not load file or assembly 'System.Text.Encodings.Web, Version=8.0.0.0, Culture=neutral,...
Since developing v7 is a larger undertaking than we initially expected, we want to backport _some fixes_ to v6. This backporting should cover [PRs](https://github.com/fluentassertions/fluentassertions/pulls?q=is%3Apr+is%3Amerged+label%3Abug+-label%3A%22breaking+change%22+merged%3A2023-08-23..2024-08-18+sort%3Acreated-asc+) that were merged since v6.12 and...
### Description When using `ReferenceTypeAssertions.BeSameAs` and failing I got a `ArgumentOutOfRangeException` instead of an `XunitException`. From the stack trace the problem lies somewhere in the formatting of the subject combined...
In NUnit the constructor and Dispose(Async) methods are run once per _class_, whereas methods marked with `[SetUp]` or `[TearDown]` are run once per _test_. In `PuppeteerBrowserBaseTest` we hence: * Before...
**Version Used**: VS 20017 Version 15.1 26403.7 **Steps to Reproduce**: 1. Start with this program ```cs #if DEBUG using System.IO; #endif namespace ConsoleApplication2 { class Foo { public void Bar()...
**Is your feature request related to a problem? Please describe.** When using `[MapDerivedType]` a switch expression is emitted with a throw expression for the default case. This is necessary for...
**Is your feature request related to a problem? Please describe.** I noticed various null checks in the generated code that didn't need to be there or could be reduced from...