dodexahedron
dodexahedron
👍 Remember to include the `using` for those `View`s. [MustDisposeResource] whining Too bad the MustDisposeResourceAttribute is not more flexible like being able to tell it to only care about locals...
That's really what a project is for, though. 30 different topics in one issue gets...unweildy.
Looks like the naming rules themselves need to be fixed, because that CA1707 shouldn't be happening. Easy enough. I don't receive it, so I must have accidentally suppressed it somewhere...
I'm going to try out the doc processor/formatter thing that Microsoft suggests for PowerShell code that already has get-help metadata. I've never used it myself, since it's never really come...
Alpha nah. Typically API isn't stable til Beta. But that's unimportant. I want to be sure you know, though, that additional stuff is coming that should be of great benefit...
I'm not seeing that draft issue I posted for the interface stuff. 🤔
A thought: Am I on all existing projects after you did all that lovely reorganization?
Just a reminder: Don't forget to use the handy-dandy [ObjectDisposedException.ThrowIf](https://learn.microsoft.com/en-us/dotnet/api/system.objectdisposedexception.throwif?view=net-8.0) helper instead of manually constructing and throwing, too! Better static analysis and optimization, with a little less code, so a...
Also, it's typically not thrown from property accessor methods, unless the accessor itself accesses a ***different*** disposable object that has been disposed, and it is supposed to leave the throwing...
A couple of heads ups before you write a whole bunch of code, just in case I didn't beat this particular horse enough or properly last time we did exception...