FsAutoComplete icon indicating copy to clipboard operation
FsAutoComplete copied to clipboard

Handle Project Reloads when adding files to wildcard patterns

Open TheAngryByrd opened this issue 10 months ago • 1 comments

We should add logic to handle Wildcarded files in fsproj files such as:

<Compile Include="CodeFixes/*.fsi" />
<Compile Include="CodeFixes/*.fs" />

In Adaptive, the additional dependencies is where it makes sense to watch for these files. We probably only want to do it upon Add or Delete but not modify.

Current workarounds:

  • Option 1: Reload Window (not ideal)
  • Option 2:
    • Save the fsproj file to mark it as updated
    • go to a file that it does know about (something that isn't wildcarded for example) and get it typechecked to force it to reload that project

TheAngryByrd avatar Sep 01 '23 14:09 TheAngryByrd