Marco von Ballmoos

Results 15 issues of Marco von Ballmoos

# Description ## Expected behavior The "Wiki" (and sub-items) links from the home page of the documentation leads to the developer documentation. ## Observed behavior The links pointing to https://www.mirthcorp.com/...

documentation

I simply ran the project against my solution and it crashed nearly immediately with the following stack trace. ```txt Microsoft.Build.Framework.InternalErrorException: MSB0001: Internal MSBuild Error: Throwing from logger shutdown ============= System.IO.FileLoadException:...

StyleCop 5.0.6419.0 raises an SA0102 error when processing the following code: ``` (Encoding, Collation) = _collationTools.GetEncodingAndCollation(Database, cmd, logger); ```

StyleCop 5.0.6419.0 raises an SA0102 error when processing the following code: ``` Assert.IsTrue(ValueTools.TryChangeType("true", out bool? nullableTest)); ```

StyleCop 5.0.6419.0 raises an SA0102 error when processing the following code: ``` return new DataConnectionSettings() { DefaultIsolationLevel = IsolationLevel.Snapshot, ["SpecialKeyOne"] = "ValueOne" // syntax error on this line }; ```

**Observed** The _Remove Annotation_ quick-fix only works for a single annotation at a time. To remove multiple in a file, you have to move to each individual instance and remove...

feature

## Description Improve ordering of indexes, foreign keys, and columns to improve diffing between pulls from database copies running on different servers. ## Checklist Please ensure your pull request fulfills...

C# offers support for object-initialization, including init and required properties that allow a user to create immutable objects with a very convenient syntax. Avoid using factories to create objects that...

## Notes A `struct record` has mutable properties, whereas a `record` has immutable properties. A `readonly struct record` has immutable properties. Be aware that simply changing `record` to `struct record`...

See [Custom Parameterless Struct Constructors](https://benbowen.blog/post/two_decades_of_csharp_vi/) for more information and examples.