tintoy / msbuild-project-tools-vscode

VS Code extension for MSBuild intellisense (including PackageReference completion).
MIT License
83 stars 17 forks source link

Autocomplete/Intellisense Only Works After The Last Grouped Entry When Initiated By `<`. #129

Closed vindicatorr closed 1 year ago

vindicatorr commented 1 year ago

Take the simple skeleton template:

<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>net8.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>enable</Nullable>
  </PropertyGroup>

</Project>

Success (intellisense):

Fail (no intellisense):

Other findings:

DoctorKrolic commented 1 year ago

Duplicate of https://github.com/tintoy/msbuild-project-tools-server/issues/71. Nevertheless, thanks for reporting!