Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
223 commits
Select commit Hold shift + click to select a range
95c37af
Rename VsLsp files to just Lsp
davidwengier Jul 30, 2024
a9ab067
Remote RoslynLsp files
davidwengier Jul 30, 2024
b0dcedb
Rename VsLsp* and RoslynLsp* to just Lsp*
davidwengier Jul 30, 2024
27c038c
Change all Range aliases to LspRange aliases
davidwengier Jul 30, 2024
4c649b2
Reference Roslyn protocol library, and deal with the extern alias bits
davidwengier Jul 30, 2024
eb3565c
Remove unused usings
davidwengier Jul 30, 2024
9792de5
More Range -> LspRange
davidwengier Jul 30, 2024
8d45e98
Introduce extern alias where necessary to reference Roslyn types
davidwengier Jul 30, 2024
bbb5adb
Move Lsp helpers into the right namespace
davidwengier Jul 30, 2024
e4537e0
Adjust namespaces and factory method names
davidwengier Jul 30, 2024
6067779
Adjust visibility on a couple of things
davidwengier Jul 30, 2024
be5f735
Fix issues with ContainedLanguage being dependent on VS types
davidwengier Jul 30, 2024
a21fd27
Roslyn types are immutable
davidwengier Jul 30, 2024
8725bba
Cohost signature help now only has to return a single type
davidwengier Jul 30, 2024
bd720ba
Project file tweaks
davidwengier Jul 30, 2024
7caf726
PR feedback
davidwengier Jul 31, 2024
ccd76da
Use extension method as extension method
davidwengier Jul 31, 2024
f505e9c
Move test code back to the test where it belongs
davidwengier Jul 31, 2024
1d5a102
Merge remote-tracking branch 'upstream/main' into LspTypes
davidwengier Jul 31, 2024
e572122
Fixes after merge
davidwengier Jul 31, 2024
4ca0fbe
Merge remote-tracking branch 'upstream/main' into LspTypes
davidwengier Aug 14, 2024
ef3b749
Merge remote-tracking branch 'upstream/main' into LspTypes
davidwengier Sep 17, 2024
dd43a04
Fixes after merge
davidwengier Sep 17, 2024
3db20ea
Merge remote-tracking branch 'upstream/main' into LspTypes
davidwengier Feb 18, 2025
8d0f638
Fixes after merge
davidwengier Feb 19, 2025
4e7d2eb
Remove unnecessary conversions to/from VS LSP types
davidwengier Feb 20, 2025
7ad79e1
Address build warnings
davidwengier Feb 20, 2025
2336193
Fix failing tooling unit tests
davidwengier Feb 20, 2025
ce2b746
Remove redundant "Roslyn" prefixes
davidwengier Feb 20, 2025
b059ef3
Missed one!
davidwengier Feb 20, 2025
d0f375e
fixup: remove roslyn prefix
davidwengier Feb 20, 2025
33c208a
Remove Newtonsoft use where possible
davidwengier Feb 20, 2025
3045a9d
Tick off some of the TODO items int eh PR description
davidwengier Feb 20, 2025
fd7cb66
Merge remote-tracking branch 'upstream/main' into LspTypes
davidwengier Feb 25, 2025
b096574
Bump to a real Roslyn version (and fix a couple of merge things)
davidwengier Feb 25, 2025
4c39a87
Random cleanups
davidwengier Feb 25, 2025
0196d1b
Fix random warnings that appeared in my error list
davidwengier Feb 25, 2025
23d8fee
Make some more global usings for common types, and make them all cons…
davidwengier Feb 25, 2025
4aeffdc
Update Version.Details.xml
davidwengier Feb 25, 2025
095a321
Merge remote-tracking branch 'upstream/main' into LspTypes
davidwengier Feb 27, 2025
f33206f
Fix source generated document retrieval
davidwengier Mar 13, 2025
61bf10d
Adjust test skips
davidwengier Mar 13, 2025
81be24b
Fix source generated document retrieval
davidwengier Mar 13, 2025
c6a8311
Adjust test skips
davidwengier Mar 13, 2025
3467669
Only store data we'll actually use for delegated completion items
davidwengier Mar 21, 2025
f8e937d
Cache results when delegating to html in cohosting
davidwengier Mar 21, 2025
6b61b91
Cache C# items in cohost completion
davidwengier Mar 21, 2025
9f24489
Move helper methods to somewhere they can be reused by cohosting
davidwengier Mar 21, 2025
6e0206d
Wrap and unwrap completion item data so that resolve can take a document
davidwengier Mar 21, 2025
587c6a8
Swap to using Roslyn types in completion because serializers are hard
davidwengier Mar 21, 2025
50ca664
Add resolve endpoint and remote service code
davidwengier Mar 21, 2025
414e9b0
Expand tests to always cover completion resolve
davidwengier Mar 21, 2025
975e465
PR Feedback
davidwengier Mar 23, 2025
611bcb1
Rename
davidwengier Mar 23, 2025
5664ead
Merge remote-tracking branch 'upstream/main' into dev/dawengie/System…
davidwengier Mar 25, 2025
a34f723
Move file to the right folder
davidwengier Mar 26, 2025
6c44d91
Strongly type to our own completion list type to ensure correct seria…
davidwengier Mar 26, 2025
b716ba2
Merge remote-tracking branch 'upstream/main' into dev/dawengie/System…
davidwengier Mar 26, 2025
3497480
Remove unused usings
davidwengier Mar 26, 2025
5457148
Fix tests and random cleanup
davidwengier Mar 26, 2025
c5a5dff
TagHelperBinding: Don't expose Mappings dictionary
DustinCampbell Mar 25, 2025
4ea942c
TagHelperBinder: Don't create HashSet<TagHelperDescriptor> for each rule
DustinCampbell Mar 25, 2025
f9a92ef
Use a pooled dictionary to build tagNameToDescriptorsMap (registrations)
DustinCampbell Mar 26, 2025
76214f5
Store catch all descriptors in a separate array rather than in the map
DustinCampbell Mar 26, 2025
b582cdb
Avoid FrozenDictionary in TagHelperBinding
DustinCampbell Mar 26, 2025
1fc41ca
Clean up and refactor TagHelperBinder and TagHelperBinding a bit
DustinCampbell Mar 26, 2025
6439831
Avoid calling TagHelperBinding.GetBoundRules(...) when unnecessary
DustinCampbell Mar 26, 2025
a97c7f1
Cache the result of TagHelperBinding.IsAttributeMatch
DustinCampbell Mar 26, 2025
2f20c38
Move Get/SetTagHelperDocumentContext() to RazorCodeDocument
DustinCampbell Mar 27, 2025
05ef2ec
Merge remote-tracking branch 'upstream/main' into dev/dawengie/System…
davidwengier Mar 30, 2025
d8cfe56
Fix test
davidwengier Mar 30, 2025
bec6884
Move VS code extension to Roslyn LSP types
davidwengier Mar 31, 2025
7042df5
Respond to API changes
davidwengier Mar 31, 2025
2026780
VisualStudioRazorParser: Update correct RazorCodeDocument
DustinCampbell Mar 31, 2025
bf59c78
Don't create ReadOnlyMemory<char> for TagNamePrefix up front
DustinCampbell Mar 31, 2025
bc3d9db
Wrap TagHelperBinder's map in a ReadOnlyDictionary
DustinCampbell Mar 31, 2025
8af8a12
Delete ProjectEngineFactory.InitializerKey.cs
DustinCampbell Mar 28, 2025
c6c8fc6
Clean up ProjectEngineHost code a bit
DustinCampbell Mar 28, 2025
150f84b
Remove the "unsupported" ProjectEngineFactory
DustinCampbell Mar 28, 2025
8952c8f
Remove IsUnsupported() and SetUnsupported() extension methods
DustinCampbell Mar 28, 2025
a2e4080
Avoid calling DocumentContext.GetSourceTextAsync in a couple spots
DustinCampbell Mar 28, 2025
93d4a98
Snap 17.14p3 (update config) (#11689)
jjonescz Apr 1, 2025
3445758
Merge main into update-projectenginehost
DustinCampbell Apr 1, 2025
c819f7e
Merge main into improve-binder-memory
DustinCampbell Apr 1, 2025
1cdeb17
Concatenate strings without null check
DustinCampbell Apr 1, 2025
cbdb58f
Rationalize ProjectEngineHost a bit (#11685)
DustinCampbell Apr 1, 2025
3a13c27
Improve performance and memory usage of TagHelperBinder (#11671)
DustinCampbell Apr 1, 2025
8699b57
Add a stress test for renaming a component attribute
davidwengier Apr 2, 2025
6b4f621
Add back serialization tests
DustinCampbell Apr 2, 2025
f897bd1
Add serialization tests back (#11694)
DustinCampbell Apr 2, 2025
6f15edc
Add a stress test for renaming a component attribute (#11691)
davidwengier Apr 2, 2025
aad9ee8
Bump Roslyn to get RIVT changes
davidwengier Apr 3, 2025
6b3e203
Merge remote-tracking branch 'upstream/main' into dev/dawengie/System…
davidwengier Apr 3, 2025
179e2bb
Revert a random unrelated change
davidwengier Apr 3, 2025
1f92501
Update VersionDetails.xml
davidwengier Apr 3, 2025
6549f7c
Attempt number 1 at writing powershell
davidwengier Apr 3, 2025
24b1726
It would have been weird if I did get it right
davidwengier Apr 3, 2025
9096181
Bump package
davidwengier Apr 3, 2025
d0b2a0f
Update compiler test baselines
davidwengier Apr 3, 2025
b295a0a
Fix path to vsregedit
davidwengier Apr 3, 2025
c2be582
SyntaxRewriter: Remove VisitToken implementation
DustinCampbell Apr 3, 2025
6237c2b
SyntaxToken: Remove WithLeadingTrivia and WithTrailingTrivia
DustinCampbell Apr 3, 2025
7ff4145
SyntaxWalker: Remove VisitLeadingTrivia and VisitTrailingTrivia
DustinCampbell Apr 3, 2025
39a09d0
SyntaxNode: Remove HasLeadingTrivia and HasTrailingTrivia
DustinCampbell Apr 3, 2025
00f4ae5
SyntaxRewriter: Remove VisitList(SyntaxTriviaList)
DustinCampbell Apr 3, 2025
3060e2d
SyntaxTriviaList: Remove Enumerator.InitializeFrom helpers
DustinCampbell Apr 3, 2025
ac8fdb9
SyntaxNode: Remove GetLeadingTrivia and GetTrailingTrivia
DustinCampbell Apr 3, 2025
ab2325f
Remove SyntaxTriviaList and SyntaxTriviaListBuilder
DustinCampbell Apr 3, 2025
4371ff3
Internal.SyntaxToken: Remove uncalled constructors
DustinCampbell Apr 3, 2025
dffabf3
Internal.SyntaxRewriter: Remove VisitToken implementation
DustinCampbell Apr 3, 2025
8bc91a1
GreenNode: Remove WithLeadingTrivia and WithTrailingTrivia
DustinCampbell Apr 3, 2025
758cc7d
Internal.SyntaxToken: Remove LeadingTrivia and TrailingTrivia
DustinCampbell Apr 3, 2025
34f2a80
GeenNode: Remove HasLeadingTrivia and HasTrailingTrivia
DustinCampbell Apr 3, 2025
6197c1e
GreenNode: Remove GetLeadingTriviaWidth() and GetTrailingTriviaWidth()
DustinCampbell Apr 3, 2025
bdcc24f
GreenNode: Remove logic to write leading/trailing trivia
DustinCampbell Apr 3, 2025
099c81f
Internal.SyntaxToken: Don't compare trivia in IsEquivalentTo
DustinCampbell Apr 3, 2025
339803e
GreenNode: Remove GetLeadingTrivia() and GetTrailingTrivia()
DustinCampbell Apr 3, 2025
d17f252
Internal.SyntaxToken: Remove leading and trailing trivia fields
DustinCampbell Apr 3, 2025
5432996
Remove SyntaxTrivia and InternalSyntax.SyntaxTrivia
DustinCampbell Apr 3, 2025
1977b4a
GreenNode: Consolidate FullWidth and Width
DustinCampbell Apr 3, 2025
74259d7
SyntaxNode: Consolidate FullWidth and Width
DustinCampbell Apr 3, 2025
2186f51
SyntaxNode: Consolidate FullSpan and Span
DustinCampbell Apr 3, 2025
f56215f
PR Feedback
davidwengier Apr 3, 2025
ac6af09
Disable the first launch dialog in integration tests (#11699)
davidwengier Apr 3, 2025
639368d
Tweak a log message
davidwengier Apr 4, 2025
edb8bca
Tweak a log message (#11705)
davidwengier Apr 4, 2025
2dcaa3a
Use Roslyn LSP types instead of Visual Studio types (#11661)
davidwengier Apr 4, 2025
5f20402
Remove unused field from PublishData (#11706)
jjonescz Apr 4, 2025
6d0e15f
LspServices: Remove unused and unnecessary methods
DustinCampbell Apr 4, 2025
2d91e57
LspServices: Clean up Dispose implementation
DustinCampbell Apr 4, 2025
84cd026
LspServices: Add Empty static property
DustinCampbell Apr 4, 2025
c88014f
RazorCompletionBenchmark: Don't use ILspServices directly
DustinCampbell Apr 4, 2025
725f9ca
Use LspServices.Empty in a couple of handful of tests
DustinCampbell Apr 4, 2025
2e8f5aa
Mark LspServices as sealed
DustinCampbell Apr 4, 2025
e91dfa1
Add LspServices to service collection as class type
DustinCampbell Apr 4, 2025
2961ac8
CababilitiesManager: Import LspServices instead of ILspServices
DustinCampbell Apr 4, 2025
795939e
RazorRequestContextFactory: Import LspServices instead of ILspServices
DustinCampbell Apr 4, 2025
59c99c3
RazorRequestContextFactory: Import services from DI
DustinCampbell Apr 4, 2025
398ac59
IOnInitialized.OnInitializedAsync shouldn't take ILspServices
DustinCampbell Apr 4, 2025
12953f1
Introduce CLaSPTypeHelpers for unit tests
DustinCampbell Apr 4, 2025
ef47d47
Remove RLSP extern alias
DustinCampbell Apr 4, 2025
03f14c4
Fuse/fix debugging info (#11658) (#11710)
jaredpar Apr 4, 2025
56b04f2
Make a couple of tweaks suggested in code review
DustinCampbell Apr 5, 2025
dc40547
Update dependencies from https://github.com/dotnet/source-build-refer…
dotnet-maestro[bot] Apr 5, 2025
573e014
Remove RLSP alias by limiting direct references to CLaSP types to Mic…
DustinCampbell Apr 5, 2025
1c78690
Update maintenance-packages versions (#11709)
carlossanlop Apr 6, 2025
5c21c67
Update dependencies from https://github.com/dotnet/arcade build 20250…
dotnet-maestro[bot] Apr 7, 2025
71902a5
Update PublishData.json after VS snap to rel/d17.14 (#11707)
jjonescz Apr 7, 2025
194bae9
Remove outdated comment and simplify GreenNode.WriteTo
DustinCampbell Apr 7, 2025
111ae93
Remove unused NodeFlags
DustinCampbell Apr 7, 2025
48b244a
GreenNode: Remove GetValue and GetValueText
DustinCampbell Apr 7, 2025
559723d
GreenNode: Remove GetFirstToken/Terminal and GetLastToken/Terminal
DustinCampbell Apr 7, 2025
8faf0e6
Remove SyntaxList<T>.FullSpan
DustinCampbell Apr 7, 2025
3d73b3b
GreenNode: Make ToString() to return the same text as ToFullString()
DustinCampbell Apr 7, 2025
947d638
Remove GreenNode.ToFullString() and SyntaxNode.ToFullString()
DustinCampbell Apr 7, 2025
684cae0
Merge branch 'main' into remove-dead-syntax
DustinCampbell Apr 7, 2025
24faf00
Add RazorFileKind enum
DustinCampbell Apr 7, 2025
62a6751
FileKinds: Add a handful of helper methods for converting RazorFileKind
DustinCampbell Apr 7, 2025
9d14580
RazorProjectItem: Make FileKind property of type RazorFileKind
DustinCampbell Apr 7, 2025
cc8b62a
RazorIntegrationTestBase.FileKind: Return RazorFileKind
DustinCampbell Apr 7, 2025
216c453
RemoteProjectItem: Pass RazorFIleKind to constructor
DustinCampbell Apr 7, 2025
e33aec1
NotFoundProjectItem: Pass RazorFileKind to constructor
DustinCampbell Apr 7, 2025
99419bc
SourceGeneratorProjectItem: Pass RazorFileKind to constructor
DustinCampbell Apr 7, 2025
da817af
DefaultRazorProjectItem: Pass RazorFileKind to constructor
DustinCampbell Apr 7, 2025
332c289
TestRazorProjectItem: Pass RazorFileKind to constructor
DustinCampbell Apr 7, 2025
06e66e8
TestSnapshotProjectItem: Pass RazorFileKind to constructor
DustinCampbell Apr 7, 2025
d5d33dd
RazorToolingIntegrationTestBase.FileKind: Return RazorFileKind
DustinCampbell Apr 7, 2025
2462253
RazorProjectFileSystem: Pass RazorFileKind to GetItem
DustinCampbell Apr 7, 2025
053e3ca
RazorParserOptions.FileKind: Return RazorFileKind
DustinCampbell Apr 7, 2025
6744afc
RazorProjectEngine: Use RazorFileKind rather than string
DustinCampbell Apr 8, 2025
95bc98d
RazorCodeDocument.FileKind: Return RazorFileKind
DustinCampbell Apr 8, 2025
0f196f8
Remove a few FileKinds.GetFileKindFromFallPath callers
DustinCampbell Apr 8, 2025
24f8929
IntegrationTestBase.CreateProjectItemFromFile: Take RazorFIleKind
DustinCampbell Apr 8, 2025
45017be
ParserTestBase.ParseDocumentTest: Take RazorFileKind
DustinCampbell Apr 8, 2025
7c309de
RazorIntegrationTestBase.CreateProjectItem: Take RazorFIleKind
DustinCampbell Apr 8, 2025
77084ef
HostDocument: Use RazorFileKind rather than string
DustinCampbell Apr 8, 2025
f22519c
IDocumentSnapshot.FileKind: Use RazorFileKind rather than string
DustinCampbell Apr 8, 2025
c9ee435
Remove SCI from generators directory (#11720)
jaredpar Apr 8, 2025
ee6665e
Use RazorFileKind throughout tooling tests
DustinCampbell Apr 8, 2025
d39fda9
Clean up auto-insert provider tests
DustinCampbell Apr 8, 2025
cc48729
FileKinds: Remove unused members
DustinCampbell Apr 8, 2025
610c5a8
Convert FileKinds Is<kind> methods to extension methods
DustinCampbell Apr 8, 2025
90fb494
Rationalize FileKinds methods
DustinCampbell Apr 8, 2025
fe705be
Add start-code.cmd
Apr 8, 2025
4cc89e4
Add start-code.cmd (#11724)
Apr 9, 2025
b4c3326
Remove SyntaxTrivia from the compiler (#11702)
DustinCampbell Apr 9, 2025
271f8d6
Don't initialize or dispose if cohosting is on
davidwengier Apr 10, 2025
0b043d8
RazorFileKind: Add doc comments
DustinCampbell Apr 10, 2025
3bb39ce
Allow graceful handling of ArgumentException when trying to apply cha…
Apr 10, 2025
2abd127
Don't forget to update serialization formats!
DustinCampbell Apr 10, 2025
66d29e9
Broaden exceptions caught
Apr 10, 2025
ac21bbe
consume new ea (#11723)
Apr 10, 2025
8261618
Cover empty changes as well
Apr 10, 2025
9abf75c
Replace "file kind" strings with an enum (#11722)
DustinCampbell Apr 10, 2025
2a2a5f7
Allow graceful handling of ArgumentException when trying to apply cha…
Apr 10, 2025
3f55a95
Add debug asserts
davidwengier Apr 10, 2025
d229e2a
Add another assert
davidwengier Apr 10, 2025
b80b58f
Don't initialize or dispose if cohosting is on (#11726)
davidwengier Apr 11, 2025
00ef962
Check CSS scope when comparing source generator items (#11728)
jjonescz Apr 11, 2025
23f2364
Merge remote-tracking branch 'upstream/main' into MoreCohostingUnskip
davidwengier Apr 12, 2025
fbb0068
Fix
davidwengier Apr 12, 2025
c2422c3
Merge branch 'MoreCohostingUnskip' into ImplementCohostCompletionResolve
davidwengier Apr 12, 2025
ab0c4f1
Fix cohosting completion and code actions (#11619)
davidwengier Apr 12, 2025
2a43837
Fixes after merge
davidwengier Apr 12, 2025
9d9c657
Merge remote-tracking branch 'upstream/main' into ImplementCohostComp…
davidwengier Apr 12, 2025
876a6a0
Fix tests after moving to Roslyn LSP types
davidwengier Apr 12, 2025
d636c2d
Port completion resolve to cohosting (#11648)
davidwengier Apr 12, 2025
fd5504a
One global usings file ought to be enough for anybody
davidwengier Apr 12, 2025
f50cc83
Minor global usings cleanup (#11734)
davidwengier Apr 13, 2025
b872c64
Update dependencies from https://github.com/dotnet/source-build-refer…
dotnet-maestro[bot] Apr 14, 2025
ca3e64a
[main] Update dependencies from dotnet/source-build-reference-package…
davidwengier Apr 14, 2025
6ba945a
Fix two IDE0055 errors (#11738)
ViktorHofer Apr 14, 2025
435a730
Remove unused reference
davidwengier Apr 16, 2025
ccc3723
Never ToString() a Uri
Apr 16, 2025
1864a01
Don't specify razor.compiler as a VSIX analyzer, but as a custom asse…
chsienki Apr 16, 2025
7fb62fb
Update package Category (#11741)
mmitche Apr 16, 2025
e4fb035
Fix cases where there is a space in the URI (#11745)
Apr 16, 2025
6fa2c44
Don't set VSIXToolsPath
davidwengier Apr 17, 2025
dde2779
Don't set VSIXToolsPath (#11749)
davidwengier Apr 17, 2025
3f3f771
Remove unused reference (#11744)
davidwengier Apr 17, 2025
939864f
Update Roslyn
jjonescz Apr 18, 2025
2acc40e
Merge branch 'roslyn-v4' into sdk10
Apr 18, 2025
8e2f09c
Fixup to remove dependency on EA.EditorFeatures
Apr 18, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
11 changes: 4 additions & 7 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
<_BasicReferenceAssembliesVersion>1.7.2</_BasicReferenceAssembliesVersion>
<_BenchmarkDotNetPackageVersion>0.13.5.2136</_BenchmarkDotNetPackageVersion>
<_MicrosoftVisualStudioExtensibilityTestingVersion>0.1.187-beta</_MicrosoftVisualStudioExtensibilityTestingVersion>
<_MicrosoftCodeAnalysisAnalyzersPackageVersion>3.11.0</_MicrosoftCodeAnalysisAnalyzersPackageVersion>
<_RoslynDiagnosticAnalyzersPackageVersion>3.11.0-beta1.24508.2</_RoslynDiagnosticAnalyzersPackageVersion>
<_MicrosoftVisualStudioLanguageServicesPackageVersion>$(MicrosoftVisualStudioLanguageServicesPackageVersion)</_MicrosoftVisualStudioLanguageServicesPackageVersion>
<_XunitPackageVersion>2.9.2</_XunitPackageVersion>
Expand All @@ -26,15 +25,13 @@
<PackageVersion Include="BenchmarkDotNet" Version="$(_BenchmarkDotNetPackageVersion)" />
<PackageVersion Include="BenchmarkDotNet.Diagnostics.Windows" Version="$(_BenchmarkDotNetPackageVersion)" />
<PackageVersion Include="DiffPlex" Version="1.7.2" />
<PackageVersion Include="FluentAssertions" Version="6.7.0" />
<PackageVersion Include="MessagePack" Version="2.5.192" />
<PackageVersion Include="Microsoft.AspNetCore.App.Runtime.$(NetCoreSDKRuntimeIdentifier)" Version="8.0.2" />
<PackageVersion Include="Microsoft.Build.Framework" Version="$(_MicrosoftBuildPackageVersion)" />
<PackageVersion Include="Microsoft.Build.Locator" Version="1.4.1" />
<PackageVersion Include="Microsoft.Build.Utilities.Core" Version="$(_MicrosoftBuildPackageVersion)" />
<PackageVersion Include="Microsoft.CodeAnalysis.Analyzer.Testing" Version="1.1.3-beta1.24423.1" />
<!-- Temporarily force analyzers to match compiler version https://github.com/dotnet/razor-tooling/issues/6758 -->
<PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="$(_MicrosoftCodeAnalysisAnalyzersPackageVersion)" />
<PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="$(MicrosoftCodeAnalysisAnalyzersPackageVersion)" />
<PackageVersion Include="Microsoft.CodeAnalysis.Common" Version="$(MicrosoftCodeAnalysisCommonPackageVersion)" />
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp" Version="$(MicrosoftCodeAnalysisCSharpPackageVersion)" />
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp.Analyzer" Version="$(MicrosoftCodeAnalysisCSharpAnalyzerTestingPackageVersion)" />
Expand All @@ -46,16 +43,16 @@
<PackageVersion Include="Microsoft.CodeAnalysis.EditorFeatures.Common" Version="$(MicrosoftCodeAnalysisEditorFeaturesCommonPackageVersion)" />
<PackageVersion Include="Microsoft.CodeAnalysis.EditorFeatures.Text" Version="$(MicrosoftCodeAnalysisEditorFeaturesTextPackageVersion)" />
<PackageVersion Include="Microsoft.CodeAnalysis.EditorFeatures.Wpf" Version="$(MicrosoftCodeAnalysisEditorFeaturesWpfPackageVersion)" />
<PackageVersion Include="Microsoft.CodeAnalysis.ExternalAccess.FSharp" Version="$(MicrosoftCodeAnalysisExternalAccessRazorPackageVersion)" />
<PackageVersion Include="Microsoft.CodeAnalysis.ExternalAccess.FSharp" Version="$(MicrosoftCodeAnalysisExternalAccessFSharpVersion)" />
<PackageVersion Include="Microsoft.CodeAnalysis.ExternalAccess.Razor" Version="$(MicrosoftCodeAnalysisExternalAccessRazorPackageVersion)" />
<PackageVersion Include="Microsoft.CodeAnalysis.ExternalAccess.Razor.Features" Version="$(MicrosoftCodeAnalysisExternalAccessRazorPackageVersion)" />
<PackageVersion Include="Microsoft.CodeAnalysis.ExternalAccess.Razor.Features" Version="$(MicrosoftCodeAnalysisExternalAccessRazorFeaturesPackageVersion)" />
<PackageVersion Include="Microsoft.CodeAnalysis.Remote.ServiceHub" Version="$(MicrosoftCodeAnalysisRemoteServiceHubPackageVersion)" />
<PackageVersion Include="Microsoft.CodeAnalysis.Test.Utilities" Version="$(MicrosoftCodeAnalysisTestUtilitiesPackageVersion)" />
<PackageVersion Include="Microsoft.CodeAnalysis.Workspaces" Version="$(MicrosoftCodeAnalysisWorkspacesPackageVersion)" />
<PackageVersion Include="Microsoft.CodeAnalysis.Workspaces.Common" Version="$(MicrosoftCodeAnalysisWorkspacesCommonPackageVersion)" />
<PackageVersion Include="Microsoft.CodeAnalysis.Workspaces.MSBuild" Version="$(MicrosoftCodeAnalysisWorkspacesMSBuildPackageVersion)" />
<PackageVersion Include="Microsoft.CommonLanguageServerProtocol.Framework" Version="$(MicrosoftCommonLanguageServerProtocolFrameworkPackageVersion)" PrivateAssets="all" />
<PackageVersion Include="Microsoft.CodeAnalysis.LanguageServer.Protocol" Version="$(MicrosoftCodeAnalysisExternalAccessRazorPackageVersion)" />
<PackageVersion Include="Microsoft.CodeAnalysis.LanguageServer.Protocol" Version="$(MicrosoftCodeAnalysisLanguageServerProtocolPackageVersion)" />
<PackageVersion Include="Microsoft.CSharp" Version="4.7.0" />
<PackageVersion Include="Microsoft.Css.Parser" Version="1.0.0-20230414.1" />
<PackageVersion Include="Microsoft.DiaSymReader" Version="2.0.0" />
Expand Down
Loading
Loading