-
Notifications
You must be signed in to change notification settings - Fork 39
Description
Describe the Issue
When C# DevKit is enabled, auto complete produces extra " characters and interrupts my workflow. When typing = and Razor properties, the editor wraps values in duplicate " characters.
The example shows what the resulting code looks like without manual intervention (backspacing and removing extras):
<TelerikDropDownList Data="="@Products"
Width="="400px"
TextField="="@nameof(ProductDto.ProductName)"
ValueField="="@nameof(ProductDto.ProductId)"
@bind-Value="="@SelectedProductId"/>"""""A video of this can be seen here.
quote-all-the-things.mp4
Steps To Reproduce
Updated Note: The ="=" text occurs if you try to set a parameter without closing the main component tag first.
- In a Blazor application
- disabled all extensions
- Typing works as expected with no extra
"characters - Enabled C# DevKit and restart the IDE
- Extra characters appear when typing
Expected Behavior
<TelerikDropDownList Data="@Products"
Width="400px"
TextField="@nameof(ProductDto.ProductName)"
ValueField="@nameof(ProductDto.ProductId)"
@bind-Value="@SelectedProductId"/>Environment Information
Version: 1.103.2 (system setup)
Commit: 6f17636121051a53c88d3e605c491d22af2ba755
Date: 2025-08-20T16:45:34.255Z
Electron: 37.2.3
ElectronBuildId: 12035395
Chromium: 138.0.7204.100
Node.js: 22.17.0
V8: 13.8.500258-electron.0
OS: Windows_NT x64 10.0.26100
DevKit:
ms-dotnettools.csdevkit
Version
1.50.33
Last Updated
2025-08-29, 11:41:50