Youssef Victor
Youssef Victor
 It's always 1.0.0. This applies to `Uno.SourceGeneration.Host.dll` as well
From a discussion with @CyrusNajmabadi on Discord, it's ideal if the boilerplate code that's added with the project template became part of the library itself. See messages from https://discord.com/channels/143867839282020352/598678594750775301/1017825588968435862
Isn't it available now?
Minor code cleanup. - Renaming of all analysis contexts to just `context` is intentional, and the shadowing is intentional. This is a common pattern in roslyn analyzers to avoid usage...
This ensures that [markdown rules](https://github.com/DavidAnson/markdownlint/blob/master/doc/Rules.md) are not violated. Later, if some specific rules annoyed you, you can disable it using the .markdownlint.json file at repository root. **This is still Work...
Fixes #65938
Alternative to: https://github.com/dotnet/roslyn/pull/47531 Here is the approach I took: - Load Roslyn.sln **without** any projects. - Right click Compilers and choose "Reload Projects in Solution Folder" - For every project...
 The scenario above is a switch *statement* with a trailing `;` (the `;` here is empty statement and should really be removed). The codefix doesn't do anything. It should...