Marco Papst
Marco Papst
You guys know that this is already possible? ```csharp OneOf.OneOf test = 15; var result = await test.Match( async str => await Task.FromResult(str), async i => await Task.FromResult(i.ToString())); ``` Instead...
I would like to add an parser. Would you prefer manual parsing or adding the MS parser? An additional package (if that is even possible, haven't looked up the architecture)...
To be honest - I haven't started and do not plan to start without an answer with a preference from @matkoch .
Using your comments to get back to the original topic: slnx format will definitely include breaking changes, as the format works completely different. There is no thing such as the...
Thats the discussion I tried to start with this comment: https://github.com/nuke-build/nuke/issues/1520#issuecomment-2722299049
The issue is, that the Nuke `Solution` class offers the possibility to access raw data from the sln file, which is no longer available in the xml format: https://github.com/nuke-build/nuke/blob/da2ea1fecf4896fbd68f3c1884ea704e64b0412f/source/Nuke.SolutionModel/Solution.cs#L49-L52 The...
Info: you can pin the transient package versions using Central Package Management Especially these two are pinned in all my projects, because of dependencies in some library in my test...