Skip to content
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

Adding cohost completion handler #11048

Open
wants to merge 41 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 37 commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
a53d3a6
Basic infrastructure and HTML completion
alexgav Sep 17, 2024
627c7e7
Moving CompletionListCache into common code
alexgav Sep 19, 2024
ecd74a4
Moved RazorCompletionListProvider and supporting infrustructure to co…
alexgav Sep 21, 2024
ba4b5ec
Adding OOPRazorCompletionFactsService and moving MarkupTransitionComp…
alexgav Sep 24, 2024
d9220c8
Moving LspTagHelperCompletionService to common layer
alexgav Sep 24, 2024
018b57d
Move RazorCompletionListProvider to the Workspaces layer
alexgav Sep 28, 2024
909c3aa
Add OOP MEF exports for completion services from Workspaces layer nee…
alexgav Oct 2, 2024
f3a44db
Hook up RazorComplelistListProvider in the RemoteCompletionService
alexgav Oct 5, 2024
f120c08
Bump Roslyn version to get new CSharp completion APIs
alexgav Oct 10, 2024
74fc3c6
Hooking up C# completion API
alexgav Oct 10, 2024
5cc1400
Common code for completion trigger characters and correct character s…
alexgav Oct 11, 2024
198b404
Respect AutoShowCompletion setting in cohosting
alexgav Oct 11, 2024
6265966
Move IsValidTrigger method to CompletionTriggerCharacters class in th…
alexgav Oct 11, 2024
cf7a94a
Call HTML completion only if we are in HTML and pass a set of existin…
alexgav Oct 11, 2024
f2f7e9c
Pass C# existing completion item labels to RazorCompletionListProvide…
alexgav Oct 11, 2024
311973b
Final completion list merge logic
alexgav Oct 11, 2024
d17c36d
Merge with main
alexgav Oct 11, 2024
bcf2080
Move delegated completion helper RewriteContext method into Workspace…
alexgav Oct 12, 2024
598686b
Provisional completion support
alexgav Oct 13, 2024
62ced4e
Moving delegated response rewriters to the common layer
alexgav Oct 14, 2024
3070b26
Consuming delegated completion response re-writers in C#
alexgav Oct 14, 2024
15be771
Switch to Roslyn CompletionParams as request input so converters are …
alexgav Oct 14, 2024
d25ab7e
Splitting delegated response rewriters into C# and HTML and simplifyi…
alexgav Oct 15, 2024
605b8b0
Moving ShouldIncludeSnippets helper into the common layer and hooking…
alexgav Oct 15, 2024
252d4ac
Adding snippets completion support to cohosting
alexgav Oct 15, 2024
8f94a13
First part of completion options clean-up
alexgav Oct 17, 2024
f5c7633
Second part of completion options clean-up - fixing options values in…
alexgav Oct 17, 2024
95f9410
First set of tests
alexgav Oct 18, 2024
9505241
Adding directives completion provider and test to cohost
alexgav Oct 18, 2024
a0514fa
Adding directive and directive attribute completion providers and tests
alexgav Oct 19, 2024
f646b03
Adding test for CommitElementsWithSpace option
alexgav Oct 19, 2024
6d29f9c
Adding test for AutoInsertAttributeQuotes
alexgav Oct 19, 2024
3312cea
Moved most of the tests for moved code from LanguageServer to Workspa…
alexgav Oct 19, 2024
81a1124
Fixing delegated response re-writer tests.
alexgav Oct 19, 2024
82d275c
Merge with main
alexgav Oct 19, 2024
bbea1db
Add required cancellation token argument to GetGeneratedDocumentAsync…
alexgav Oct 20, 2024
c5722bc
Simplifying trigger character data
alexgav Oct 20, 2024
ec28f9f
Serialization attribute clean-up
alexgav Oct 21, 2024
7129038
Converting DelegatedCSharpCompletionResponseRewriter to interface per…
alexgav Oct 21, 2024
538e3be
Changing ShouldIncludeSnippets to take in RazorCodeDocument per CR su…
alexgav Oct 21, 2024
c744e13
Removed unnecessary null checks per CR suggestion
alexgav Oct 21, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
<_BasicReferenceAssembliesVersion>1.7.2</_BasicReferenceAssembliesVersion>
<_BenchmarkDotNetPackageVersion>0.13.5.2136</_BenchmarkDotNetPackageVersion>
<_MicrosoftVisualStudioExtensibilityTestingVersion>0.1.187-beta</_MicrosoftVisualStudioExtensibilityTestingVersion>
<_MicrosoftCodeAnalysisAnalyzersPackageVersion>3.11.0-beta1.24170.2</_MicrosoftCodeAnalysisAnalyzersPackageVersion>
<_MicrosoftCodeAnalysisAnalyzersPackageVersion>3.11.0</_MicrosoftCodeAnalysisAnalyzersPackageVersion>
<_MicrosoftVisualStudioLanguageServicesPackageVersion>$(MicrosoftVisualStudioLanguageServicesPackageVersion)</_MicrosoftVisualStudioLanguageServicesPackageVersion>
<_XunitPackageVersion>2.6.3</_XunitPackageVersion>
<_XunitPackageVersion>2.6.6</_XunitPackageVersion>
<_MicrosoftBuildPackageVersion>17.11.0-preview-24309-01</_MicrosoftBuildPackageVersion>
</PropertyGroup>

Expand All @@ -34,7 +34,7 @@
<PackageVersion Include="Microsoft.CodeAnalysis.Analyzer.Testing" Version="1.1.2-beta1.24121.1" NoWarn="NU1608" />
<!-- Temporarily force analyzers to match compiler version https://github.com/dotnet/razor-tooling/issues/6758 -->
<PackageVersion Include="Microsoft.CodeAnalysis.Analyzers" Version="$(_MicrosoftCodeAnalysisAnalyzersPackageVersion)" NoWarn="NU1608" />
<PackageVersion Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="$(_MicrosoftCodeAnalysisAnalyzersPackageVersion)" />
<PackageVersion Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="3.11.0-beta1.24508.2" />
<PackageVersion Include="Microsoft.CodeAnalysis.Common" Version="$(MicrosoftCodeAnalysisCommonPackageVersion)" />
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp" Version="$(MicrosoftCodeAnalysisCSharpPackageVersion)" />
<PackageVersion Include="Microsoft.CodeAnalysis.CSharp.Analyzer" Version="$(MicrosoftCodeAnalysisCSharpAnalyzerTestingPackageVersion)" />
Expand Down Expand Up @@ -106,7 +106,7 @@
<PackageVersion Include="Newtonsoft.Json" Version="13.0.3" />
<PackageVersion Include="Nerdbank.Streams" Version="2.11.74" />
<PackageVersion Include="NuGet.VisualStudio" Version="17.9.1" />
<PackageVersion Include="Roslyn.Diagnostics.Analyzers" Version="$(_MicrosoftCodeAnalysisAnalyzersPackageVersion)" />
<PackageVersion Include="Roslyn.Diagnostics.Analyzers" Version="3.11.0-beta1.24508.2" />
<PackageVersion Include="System.Collections.Immutable" Version="$(SystemCollectionsImmutablePackageVersion)" />
<PackageVersion Include="System.Resources.Extensions" Version="8.0.0" />
<PackageVersion Include="System.Diagnostics.DiagnosticSource" Version="8.0.0" />
Expand All @@ -117,7 +117,7 @@
<PackageVersion Include="System.Text.Json" Version="8.0.4" />
<PackageVersion Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
<PackageVersion Include="xunit" Version="$(_XunitPackageVersion)" />
<PackageVersion Include="Xunit.Combinatorial" Version="1.5.25" />
<PackageVersion Include="Xunit.Combinatorial" Version="1.6.24" />
<PackageVersion Include="xunit.extensibility.execution" Version="$(_XunitPackageVersion)" />
<PackageVersion Include="xunit.runner.utility" Version="2.4.1" />
<PackageVersion Include="Xunit.StaFact" Version="1.2.46-alpha" />
Expand Down
76 changes: 38 additions & 38 deletions eng/Version.Details.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,82 +11,82 @@
<Sha>76c417253f5b3890997a3ef4b0613c2eab73d156</Sha>
<SourceBuild RepoName="source-build-reference-packages" ManagedOnly="true" />
</Dependency>
<Dependency Name="Microsoft.Net.Compilers.Toolset" Version="4.12.0-3.24466.4">
<Dependency Name="Microsoft.Net.Compilers.Toolset" Version="4.13.0-1.24505.1">
<Uri>https://github.com/dotnet/roslyn</Uri>
<Sha>7b7951aa13c50ad768538e58ed3805898b058928</Sha>
<Sha>e2d4e372f19c16f9b3dea06f7ca857ed5d42bc09</Sha>
</Dependency>
<Dependency Name="Microsoft.CommonLanguageServerProtocol.Framework" Version="4.12.0-3.24466.4">
<Dependency Name="Microsoft.CommonLanguageServerProtocol.Framework" Version="4.13.0-1.24505.1">
<Uri>https://github.com/dotnet/roslyn</Uri>
<Sha>7b7951aa13c50ad768538e58ed3805898b058928</Sha>
<Sha>e2d4e372f19c16f9b3dea06f7ca857ed5d42bc09</Sha>
</Dependency>
<Dependency Name="Microsoft.CodeAnalysis.ExternalAccess.Razor" Version="4.12.0-3.24466.4">
<Dependency Name="Microsoft.CodeAnalysis.ExternalAccess.Razor" Version="4.13.0-1.24505.1">
<Uri>https://github.com/dotnet/roslyn</Uri>
<Sha>7b7951aa13c50ad768538e58ed3805898b058928</Sha>
<Sha>e2d4e372f19c16f9b3dea06f7ca857ed5d42bc09</Sha>
</Dependency>
<Dependency Name="Microsoft.CodeAnalysis.Common" Version="4.12.0-3.24466.4">
<Dependency Name="Microsoft.CodeAnalysis.Common" Version="4.13.0-1.24505.1">
<Uri>https://github.com/dotnet/roslyn</Uri>
<Sha>7b7951aa13c50ad768538e58ed3805898b058928</Sha>
<Sha>e2d4e372f19c16f9b3dea06f7ca857ed5d42bc09</Sha>
</Dependency>
<Dependency Name="Microsoft.CodeAnalysis.CSharp" Version="4.12.0-3.24466.4">
<Dependency Name="Microsoft.CodeAnalysis.CSharp" Version="4.13.0-1.24505.1">
<Uri>https://github.com/dotnet/roslyn</Uri>
<Sha>7b7951aa13c50ad768538e58ed3805898b058928</Sha>
<Sha>e2d4e372f19c16f9b3dea06f7ca857ed5d42bc09</Sha>
</Dependency>
<Dependency Name="Microsoft.CodeAnalysis.CSharp.EditorFeatures" Version="4.12.0-3.24466.4">
<Dependency Name="Microsoft.CodeAnalysis.CSharp.EditorFeatures" Version="4.13.0-1.24505.1">
<Uri>https://github.com/dotnet/roslyn</Uri>
<Sha>7b7951aa13c50ad768538e58ed3805898b058928</Sha>
<Sha>e2d4e372f19c16f9b3dea06f7ca857ed5d42bc09</Sha>
</Dependency>
<Dependency Name="Microsoft.CodeAnalysis.CSharp.Features" Version="4.12.0-3.24466.4">
<Dependency Name="Microsoft.CodeAnalysis.CSharp.Features" Version="4.13.0-1.24505.1">
<Uri>https://github.com/dotnet/roslyn</Uri>
<Sha>7b7951aa13c50ad768538e58ed3805898b058928</Sha>
<Sha>e2d4e372f19c16f9b3dea06f7ca857ed5d42bc09</Sha>
</Dependency>
<Dependency Name="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.12.0-3.24466.4">
<Dependency Name="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.13.0-1.24505.1">
<Uri>https://github.com/dotnet/roslyn</Uri>
<Sha>7b7951aa13c50ad768538e58ed3805898b058928</Sha>
<Sha>e2d4e372f19c16f9b3dea06f7ca857ed5d42bc09</Sha>
</Dependency>
<Dependency Name="Microsoft.CodeAnalysis.EditorFeatures" Version="4.12.0-3.24466.4">
<Dependency Name="Microsoft.CodeAnalysis.EditorFeatures" Version="4.13.0-1.24505.1">
<Uri>https://github.com/dotnet/roslyn</Uri>
<Sha>7b7951aa13c50ad768538e58ed3805898b058928</Sha>
<Sha>e2d4e372f19c16f9b3dea06f7ca857ed5d42bc09</Sha>
</Dependency>
<Dependency Name="Microsoft.CodeAnalysis.EditorFeatures.Common" Version="4.12.0-3.24466.4">
<Dependency Name="Microsoft.CodeAnalysis.EditorFeatures.Common" Version="4.13.0-1.24505.1">
<Uri>https://github.com/dotnet/roslyn</Uri>
<Sha>7b7951aa13c50ad768538e58ed3805898b058928</Sha>
<Sha>e2d4e372f19c16f9b3dea06f7ca857ed5d42bc09</Sha>
</Dependency>
<Dependency Name="Microsoft.CodeAnalysis.EditorFeatures.Text" Version="4.12.0-3.24466.4">
<Dependency Name="Microsoft.CodeAnalysis.EditorFeatures.Text" Version="4.13.0-1.24505.1">
<Uri>https://github.com/dotnet/roslyn</Uri>
<Sha>7b7951aa13c50ad768538e58ed3805898b058928</Sha>
<Sha>e2d4e372f19c16f9b3dea06f7ca857ed5d42bc09</Sha>
</Dependency>
<Dependency Name="Microsoft.CodeAnalysis.EditorFeatures.Wpf" Version="4.12.0-3.24466.4">
<Dependency Name="Microsoft.CodeAnalysis.EditorFeatures.Wpf" Version="4.13.0-1.24505.1">
<Uri>https://github.com/dotnet/roslyn</Uri>
<Sha>7b7951aa13c50ad768538e58ed3805898b058928</Sha>
<Sha>e2d4e372f19c16f9b3dea06f7ca857ed5d42bc09</Sha>
</Dependency>
<Dependency Name="Microsoft.CodeAnalysis.Remote.ServiceHub" Version="4.12.0-3.24466.4">
<Dependency Name="Microsoft.CodeAnalysis.Remote.ServiceHub" Version="4.13.0-1.24505.1">
<Uri>https://github.com/dotnet/roslyn</Uri>
<Sha>7b7951aa13c50ad768538e58ed3805898b058928</Sha>
<Sha>e2d4e372f19c16f9b3dea06f7ca857ed5d42bc09</Sha>
</Dependency>
<Dependency Name="Microsoft.CodeAnalysis.VisualBasic.Workspaces" Version="4.12.0-3.24466.4">
<Dependency Name="Microsoft.CodeAnalysis.VisualBasic.Workspaces" Version="4.13.0-1.24505.1">
<Uri>https://github.com/dotnet/roslyn</Uri>
<Sha>7b7951aa13c50ad768538e58ed3805898b058928</Sha>
<Sha>e2d4e372f19c16f9b3dea06f7ca857ed5d42bc09</Sha>
</Dependency>
<Dependency Name="Microsoft.CodeAnalysis.Workspaces.Common" Version="4.12.0-3.24466.4">
<Dependency Name="Microsoft.CodeAnalysis.Workspaces.Common" Version="4.13.0-1.24505.1">
<Uri>https://github.com/dotnet/roslyn</Uri>
<Sha>7b7951aa13c50ad768538e58ed3805898b058928</Sha>
<Sha>e2d4e372f19c16f9b3dea06f7ca857ed5d42bc09</Sha>
</Dependency>
<Dependency Name="Microsoft.CodeAnalysis.Workspaces.MSBuild" Version="4.12.0-3.24466.4">
<Dependency Name="Microsoft.CodeAnalysis.Workspaces.MSBuild" Version="4.13.0-1.24505.1">
<Uri>https://github.com/dotnet/roslyn</Uri>
<Sha>7b7951aa13c50ad768538e58ed3805898b058928</Sha>
<Sha>e2d4e372f19c16f9b3dea06f7ca857ed5d42bc09</Sha>
</Dependency>
<Dependency Name="Microsoft.VisualStudio.LanguageServices" Version="4.12.0-3.24466.4">
<Dependency Name="Microsoft.VisualStudio.LanguageServices" Version="4.13.0-1.24505.1">
<Uri>https://github.com/dotnet/roslyn</Uri>
<Sha>7b7951aa13c50ad768538e58ed3805898b058928</Sha>
<Sha>e2d4e372f19c16f9b3dea06f7ca857ed5d42bc09</Sha>
</Dependency>
<Dependency Name="Microsoft.CodeAnalysis.Test.Utilities" Version="4.12.0-3.24466.4">
<Dependency Name="Microsoft.CodeAnalysis.Test.Utilities" Version="4.13.0-1.24505.1">
<Uri>https://github.com/dotnet/roslyn</Uri>
<Sha>7b7951aa13c50ad768538e58ed3805898b058928</Sha>
<Sha>e2d4e372f19c16f9b3dea06f7ca857ed5d42bc09</Sha>
</Dependency>
<!-- Intermediate is necessary for source build. -->
<Dependency Name="Microsoft.SourceBuild.Intermediate.roslyn" Version="4.12.0-3.24466.4">
<Dependency Name="Microsoft.SourceBuild.Intermediate.roslyn" Version="4.13.0-1.24505.1">
<Uri>https://github.com/dotnet/roslyn</Uri>
<Sha>7b7951aa13c50ad768538e58ed3805898b058928</Sha>
<Sha>e2d4e372f19c16f9b3dea06f7ca857ed5d42bc09</Sha>
<SourceBuild RepoName="roslyn" ManagedOnly="true" />
</Dependency>
</ProductDependencies>
Expand Down
40 changes: 20 additions & 20 deletions eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -53,25 +53,25 @@
<MicrosoftSourceBuildIntermediatearcadePackageVersion>9.0.0-beta.24509.3</MicrosoftSourceBuildIntermediatearcadePackageVersion>
<MicrosoftDotNetXliffTasksPackageVersion>1.0.0-beta.23475.1</MicrosoftDotNetXliffTasksPackageVersion>
<MicrosoftSourceBuildIntermediatexlifftasksPackageVersion>1.0.0-beta.23475.1</MicrosoftSourceBuildIntermediatexlifftasksPackageVersion>
<MicrosoftNetCompilersToolsetPackageVersion>4.12.0-3.24466.4</MicrosoftNetCompilersToolsetPackageVersion>
<MicrosoftCommonLanguageServerProtocolFrameworkPackageVersion>4.12.0-3.24466.4</MicrosoftCommonLanguageServerProtocolFrameworkPackageVersion>
<MicrosoftCodeAnalysisExternalAccessRazorPackageVersion>4.12.0-3.24466.4</MicrosoftCodeAnalysisExternalAccessRazorPackageVersion>
<MicrosoftCodeAnalysisCommonPackageVersion>4.12.0-3.24466.4</MicrosoftCodeAnalysisCommonPackageVersion>
<MicrosoftCodeAnalysisCSharpPackageVersion>4.12.0-3.24466.4</MicrosoftCodeAnalysisCSharpPackageVersion>
<MicrosoftCodeAnalysisCSharpEditorFeaturesPackageVersion>4.12.0-3.24466.4</MicrosoftCodeAnalysisCSharpEditorFeaturesPackageVersion>
<MicrosoftCodeAnalysisCSharpFeaturesPackageVersion>4.12.0-3.24466.4</MicrosoftCodeAnalysisCSharpFeaturesPackageVersion>
<MicrosoftCodeAnalysisCSharpWorkspacesPackageVersion>4.12.0-3.24466.4</MicrosoftCodeAnalysisCSharpWorkspacesPackageVersion>
<MicrosoftCodeAnalysisEditorFeaturesPackageVersion>4.12.0-3.24466.4</MicrosoftCodeAnalysisEditorFeaturesPackageVersion>
<MicrosoftCodeAnalysisEditorFeaturesCommonPackageVersion>4.12.0-3.24466.4</MicrosoftCodeAnalysisEditorFeaturesCommonPackageVersion>
<MicrosoftCodeAnalysisEditorFeaturesTextPackageVersion>4.12.0-3.24466.4</MicrosoftCodeAnalysisEditorFeaturesTextPackageVersion>
<MicrosoftCodeAnalysisEditorFeaturesWpfPackageVersion>4.12.0-3.24466.4</MicrosoftCodeAnalysisEditorFeaturesWpfPackageVersion>
<MicrosoftCodeAnalysisRemoteServiceHubPackageVersion>4.12.0-3.24466.4</MicrosoftCodeAnalysisRemoteServiceHubPackageVersion>
<MicrosoftCodeAnalysisTestUtilitiesPackageVersion>4.12.0-3.24466.4</MicrosoftCodeAnalysisTestUtilitiesPackageVersion>
<MicrosoftCodeAnalysisVisualBasicWorkspacesPackageVersion>4.12.0-3.24466.4</MicrosoftCodeAnalysisVisualBasicWorkspacesPackageVersion>
<MicrosoftCodeAnalysisWorkspacesCommonPackageVersion>4.12.0-3.24466.4</MicrosoftCodeAnalysisWorkspacesCommonPackageVersion>
<MicrosoftCodeAnalysisWorkspacesMSBuildPackageVersion>4.12.0-3.24466.4</MicrosoftCodeAnalysisWorkspacesMSBuildPackageVersion>
<MicrosoftSourceBuildIntermediateroslynPackageVersion>4.12.0-3.24466.4</MicrosoftSourceBuildIntermediateroslynPackageVersion>
<MicrosoftVisualStudioLanguageServicesPackageVersion>4.12.0-3.24466.4</MicrosoftVisualStudioLanguageServicesPackageVersion>
<MicrosoftNetCompilersToolsetPackageVersion>4.13.0-1.24505.1</MicrosoftNetCompilersToolsetPackageVersion>
<MicrosoftCommonLanguageServerProtocolFrameworkPackageVersion>4.13.0-1.24505.1</MicrosoftCommonLanguageServerProtocolFrameworkPackageVersion>
<MicrosoftCodeAnalysisExternalAccessRazorPackageVersion>4.13.0-1.24505.1</MicrosoftCodeAnalysisExternalAccessRazorPackageVersion>
<MicrosoftCodeAnalysisCommonPackageVersion>4.13.0-1.24505.1</MicrosoftCodeAnalysisCommonPackageVersion>
<MicrosoftCodeAnalysisCSharpPackageVersion>4.13.0-1.24505.1</MicrosoftCodeAnalysisCSharpPackageVersion>
<MicrosoftCodeAnalysisCSharpEditorFeaturesPackageVersion>4.13.0-1.24505.1</MicrosoftCodeAnalysisCSharpEditorFeaturesPackageVersion>
<MicrosoftCodeAnalysisCSharpFeaturesPackageVersion>4.13.0-1.24505.1</MicrosoftCodeAnalysisCSharpFeaturesPackageVersion>
<MicrosoftCodeAnalysisCSharpWorkspacesPackageVersion>4.13.0-1.24505.1</MicrosoftCodeAnalysisCSharpWorkspacesPackageVersion>
<MicrosoftCodeAnalysisEditorFeaturesPackageVersion>4.13.0-1.24505.1</MicrosoftCodeAnalysisEditorFeaturesPackageVersion>
<MicrosoftCodeAnalysisEditorFeaturesCommonPackageVersion>4.13.0-1.24505.1</MicrosoftCodeAnalysisEditorFeaturesCommonPackageVersion>
<MicrosoftCodeAnalysisEditorFeaturesTextPackageVersion>4.13.0-1.24505.1</MicrosoftCodeAnalysisEditorFeaturesTextPackageVersion>
<MicrosoftCodeAnalysisEditorFeaturesWpfPackageVersion>4.13.0-1.24505.1</MicrosoftCodeAnalysisEditorFeaturesWpfPackageVersion>
<MicrosoftCodeAnalysisRemoteServiceHubPackageVersion>4.13.0-1.24505.1</MicrosoftCodeAnalysisRemoteServiceHubPackageVersion>
<MicrosoftCodeAnalysisTestUtilitiesPackageVersion>4.13.0-1.24505.1</MicrosoftCodeAnalysisTestUtilitiesPackageVersion>
<MicrosoftCodeAnalysisVisualBasicWorkspacesPackageVersion>4.13.0-1.24505.1</MicrosoftCodeAnalysisVisualBasicWorkspacesPackageVersion>
<MicrosoftCodeAnalysisWorkspacesCommonPackageVersion>4.13.0-1.24505.1</MicrosoftCodeAnalysisWorkspacesCommonPackageVersion>
<MicrosoftCodeAnalysisWorkspacesMSBuildPackageVersion>4.13.0-1.24505.1</MicrosoftCodeAnalysisWorkspacesMSBuildPackageVersion>
<MicrosoftSourceBuildIntermediateroslynPackageVersion>4.13.0-1.24505.1</MicrosoftSourceBuildIntermediateroslynPackageVersion>
<MicrosoftVisualStudioLanguageServicesPackageVersion>4.13.0-1.24505.1</MicrosoftVisualStudioLanguageServicesPackageVersion>
<!--
Exception - Microsoft.Extensions.ObjectPool and System.Collections.Immutable packages are not updated by automation,
but are present in Version.Details.xml for source-build PVP flow. See the comment in Version.Details.xml for more information.
Expand All @@ -97,7 +97,7 @@
PackageReference versions directly in arcade.
-->
<MicrosoftNetCompilersToolsetVersion>$(MicrosoftNetCompilersToolsetPackageVersion)</MicrosoftNetCompilersToolsetVersion>
<XUnitVersion>2.6.3</XUnitVersion>
<XUnitVersion>2.6.6</XUnitVersion>
<XUnitAnalyzersVersion>1.7.0</XUnitAnalyzersVersion>
</PropertyGroup>
</Project>
1 change: 1 addition & 0 deletions eng/targets/Services.props
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,6 @@
<ServiceHubService Include="Microsoft.VisualStudio.Razor.GoToImplementation" ClassName="Microsoft.CodeAnalysis.Remote.Razor.RemoteGoToImplementationService+Factory" />
<ServiceHubService Include="Microsoft.VisualStudio.Razor.SpellCheck" ClassName="Microsoft.CodeAnalysis.Remote.Razor.RemoteSpellCheckService+Factory" />
<ServiceHubService Include="Microsoft.VisualStudio.Razor.Diagnostics" ClassName="Microsoft.CodeAnalysis.Remote.Razor.RemoteDiagnosticsService+Factory" />
<ServiceHubService Include="Microsoft.VisualStudio.Razor.Completion" ClassName="Microsoft.CodeAnalysis.Remote.Razor.RemoteCompletionService+Factory" />
</ItemGroup>
</Project>
Loading
Loading