RowlandBanks
RowlandBanks
## Description * Adds a new unit-test proving a model can be round-tripped ✔️ * Fixes any bugs encountered ✔️ ## Related Issue Fixes #1832 ## Checklist - [ ]...
The existing `runtime-csharp` unit-tests do not currently test deserialization. When adding such a test, a bug is exposed. ### Steps to reproduce Add the following unit-test in the `runtime-csharp` test...
It's very common in the C# generator world to add the [GeneratedCodeAttribute](https://learn.microsoft.com/en-us/dotnet/api/system.codedom.compiler.generatedcodeattribute?view=net-8.0) to generated code. For example: ```c# [GeneratedCode("some-code-generator", "1.2.3")] public class SomeGeneratedModel { } ``` I would also suggest...
# Scenario We have a pre-commit hook that enforces commit messages are in a particular format. For example, it might enforce [Semantic Commits](https://gist.github.com/joshbuchea/6f47e86d2510bce28f8e7f42ae84c716), or [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0-beta.2/). These hooks may be...