-
Notifications
You must be signed in to change notification settings - Fork 195
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cohosting OnAutoInsert endpoint #10674
Commits on Aug 21, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 7d63bd4 - Browse repository at this point
Copy the full SHA 7d63bd4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7e736cf - Browse repository at this point
Copy the full SHA 7e736cfView commit details -
Configuration menu - View commit details
-
Copy full SHA for c2ad4ed - Browse repository at this point
Copy the full SHA c2ad4edView commit details -
Configuration menu - View commit details
-
Copy full SHA for ce9e1bf - Browse repository at this point
Copy the full SHA ce9e1bfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 72fdab3 - Browse repository at this point
Copy the full SHA 72fdab3View commit details -
Configuration menu - View commit details
-
Copy full SHA for c3c72dc - Browse repository at this point
Copy the full SHA c3c72dcView commit details -
Update src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/AutoInse…
…rt/AutoClosingTagOnAutoInsertProvider.cs Co-authored-by: David Wengier <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 4350c85 - Browse repository at this point
Copy the full SHA 4350c85View commit details -
Update src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/AutoInse…
…rt/IAutoInsertService.cs Co-authored-by: David Wengier <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 3dbaf87 - Browse repository at this point
Copy the full SHA 3dbaf87View commit details -
Update src/Razor/src/Microsoft.CodeAnalysis.Razor.Workspaces/AutoInse…
…rt/InsertTextEdit.cs Co-authored-by: David Wengier <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 0df70d6 - Browse repository at this point
Copy the full SHA 0df70d6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 32eb28f - Browse repository at this point
Copy the full SHA 32eb28fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5c1deb6 - Browse repository at this point
Copy the full SHA 5c1deb6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 71fe24e - Browse repository at this point
Copy the full SHA 71fe24eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 177c0f4 - Browse repository at this point
Copy the full SHA 177c0f4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1dc1044 - Browse repository at this point
Copy the full SHA 1dc1044View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4988389 - Browse repository at this point
Copy the full SHA 4988389View commit details -
Configuration menu - View commit details
-
Copy full SHA for 325b59f - Browse repository at this point
Copy the full SHA 325b59fView commit details -
Configuration menu - View commit details
-
Copy full SHA for d4bbe6c - Browse repository at this point
Copy the full SHA d4bbe6cView commit details -
Configuration menu - View commit details
-
Copy full SHA for bb7f79e - Browse repository at this point
Copy the full SHA bb7f79eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 4e0d7b2 - Browse repository at this point
Copy the full SHA 4e0d7b2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 72923a4 - Browse repository at this point
Copy the full SHA 72923a4View commit details -
Configuration menu - View commit details
-
Copy full SHA for b230260 - Browse repository at this point
Copy the full SHA b230260View commit details -
Configuration menu - View commit details
-
Copy full SHA for d8ab694 - Browse repository at this point
Copy the full SHA d8ab694View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9d3b8fe - Browse repository at this point
Copy the full SHA 9d3b8feView commit details -
Configuration menu - View commit details
-
Copy full SHA for bc1b677 - Browse repository at this point
Copy the full SHA bc1b677View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3a34c6b - Browse repository at this point
Copy the full SHA 3a34c6bView commit details -
Configuration menu - View commit details
-
Copy full SHA for a5ab0df - Browse repository at this point
Copy the full SHA a5ab0dfView commit details -
Fixes to MEF composition issue and capabilities check
- IDocumentMappingService was not needed (and not available via MEF), so removed that - TextDocument does not implmement VSInternalTextDocumentClientCapabilities
Configuration menu - View commit details
-
Copy full SHA for 356da7c - Browse repository at this point
Copy the full SHA 356da7cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 37f0d42 - Browse repository at this point
Copy the full SHA 37f0d42View commit details -
Configuration menu - View commit details
-
Copy full SHA for 52b251f - Browse repository at this point
Copy the full SHA 52b251fView commit details -
Switching parameters to RazorCodeDocument and removing async in a lot…
… of places per CR suggestion
Configuration menu - View commit details
-
Copy full SHA for 477585d - Browse repository at this point
Copy the full SHA 477585dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 19f4f46 - Browse repository at this point
Copy the full SHA 19f4f46View commit details -
Fix RemoteAutoInsertService logic to follow existing code (always pre…
…fer our own AutoInsertService first)
Configuration menu - View commit details
-
Copy full SHA for 95c810f - Browse repository at this point
Copy the full SHA 95c810fView commit details -
Configuration menu - View commit details
-
Copy full SHA for eaf408d - Browse repository at this point
Copy the full SHA eaf408dView commit details -
Configuration menu - View commit details
-
Copy full SHA for e9c8d54 - Browse repository at this point
Copy the full SHA e9c8d54View commit details -
Configuration menu - View commit details
-
Copy full SHA for 53e5186 - Browse repository at this point
Copy the full SHA 53e5186View commit details -
Configuration menu - View commit details
-
Copy full SHA for 58883fb - Browse repository at this point
Copy the full SHA 58883fbView commit details
Commits on Aug 22, 2024
-
Fixing exception in RemoteProjectSnapshot.Configuration
Moving GetFormatterCodeDocumentAsync() into IDocumentSnapshot (and implementations of that) to allow eaiser differentiation of behavior in remote (cohosting) case where we don't need to check the flag on Project.Configuration. Also AddUsingStatementsIfNeeded *always* gets called, even in cases when they are not actually needed, so we can't Debug.Fail there.
Configuration menu - View commit details
-
Copy full SHA for 7e442d2 - Browse repository at this point
Copy the full SHA 7e442d2View commit details -
Switch to PreferHtmlInAttributeValuesDocumentPositionInfoStrategy as …
…the original code does That allows the code insert double-quotes by delegating to HTML language server after attribute name and equals.
Configuration menu - View commit details
-
Copy full SHA for 292c9a7 - Browse repository at this point
Copy the full SHA 292c9a7View commit details