Steve Cadwallader
Steve Cadwallader
Thanks for opening the issue. In that example the multi-line comments are attached to the method, and if the option to insert blank line padding before methods is enabled it...
```csharp /// /// multiline comments /// public string Name {get; set;} ``` Is considered a multi-line property and will be affected by the option "Insert blank line padding before multi-line...
Thanks for reporting the issue. This is unfortunately as expected as the VS API we leverage to retrieve the code model does not return results for decompiled sources.
It looks like they're leveraging Roslyn (newer VS API) which we are looking to leverage as well but will require a significant rewrite as we've built a lot of code...
Thanks for asking the question. Unfortunately no, CodeMaid is heavily dependent on Visual Studio APIs that are only available while the IDE is open. There's a little more detail in...
Thanks for reporting the issue. If CodeMaid is unable to build a code model it will indeed show a blank or largely blank section. An example of this is shared...
Thanks for reporting the issue. Can you take a look at #865 and see if that solution helps you? Several users have had to upgrade to the latest VS2019 and...
Thanks for reporting the issue, I can confirm that I see the same. I'll see if the same technique that worked on #2 will work here.
Unfortunately no, it's not that easy. It reports as a generic C# project and while attempting to lookup the project items via the same similar routine as universal projects works,...
Thanks for reporting the issue. Yes CodeMaid does have its own configuration (predates .editorconfig) which you can find at Extensions->CodeMaid->Options->Reorganizing and by default largely follows StyleCop conventions. We do not...