CsCodeGenerator
CsCodeGenerator copied to clipboard
Easy C# class and code generation
Using Visual Studio 2019. I do not see it in the code base currently, so a bit confused where its coming from, but each time directly after CsGenerator.CreateFiles() the breakpoint...
Using a simple list of lines works well enough for very simple methods, but as soon as you add even a single `if`, it becomes challenging to keep indents correct....
model: ```cs serviceClassModel.Properties = new List { new(BuiltInDataType.String, "UdtName") { AccessModifier = AccessModifier.Public, KeyWords = new List { KeyWord.Override }, IsGetOnly = true, GetterBody = "foo" } }; ``` output:...
Zdravo Currently Comment renders the following: ``` // my comment public class MyClass ``` I would like Comment to render the following: ``` /// /// my comment /// public class...
Current code does not support EnumValues having attributes or summaries.
Summaries should potentially be refactored here are a few issues I found 1. [Bug] Summary sections should be closed Current output ```c# /// /// ``` Correct output ```c# /// ///...