DoctorKrolic
DoctorKrolic
Current workaround is to check whether `ThisAssembly.Git.Tag` contains `-`. However having a proper `bool` property for this would be a lot better
Fixes: https://github.com/dotnet/razor-tooling/issues/6887 One of the dirtiest workarounds I've done in a while. The propper fix would be to reuse roslyn as I [mentioned earlier](https://github.com/dotnet/razor-tooling/pull/6987#issuecomment-1278694056). Or if it is considered impossible/not...
**Describe the bug:** This is probably the issue of html language server, but it is more understandable in context of razor editor, so I'm posting it here rather than on...
**Version used:** VS 2022 v17.4 Preview 3 **To reproduce:** 1. Create blazor server app 2. Go to `Counter.razor` 3. Add this code: `` 4. Hover over `input` and `bind-value` **Expected...
**Version used:** VS 2022 v17.4 Preview 3 **To reproduce:** 1. Create blazor server app 2. Go to `Counter.razor` 3. In `IncrementCount` add `var a = 10000;` 4. Observe colorization of...
**Version used:** VS 17.4 Preview 2.1 **To reproduce:** 1. Create blazor server app 2. Create component `Component.razor` with this code: ```razor @code { [Parameter] public string Parameter { get; set;...
No idea why you didn't do this in https://github.com/dotnet/razor-tooling/pull/6012. Currently snippets are duplicating if display names are differen:  _Here `for` and `foreach` are snippets from language server, while `for...
`.await` and `.awaitf`are _really_ useful completions. However, in such form they behave a lot more like snippets rather than just a keyword completions. So I made tiny visual changes to...
Fixes: https://github.com/dotnet/roslyn/issues/42336 The issue is quite old, so the actual problem changed a bit. Before this PR the output for property with initializer was ```cs class A { public string...
Abstracted a lot of logic for property generation. In theory, it now allows to generate any kind of auto property, even with different `get` accessor. On top of new abstractions...