I am working on a C# project that is still using an older .net version (.net core 2.2) and while basically everything about the project works, I am having some problems with the autocompletion.
When I try to autocomplete any type that is defined within the current file it works without problem and hovering over local variables also shows their definition, but if I try using autocomplete on anything that isn’t directly written in the file (like included files via ‘using’) I simply get not autocomplete suggestions and no type description.
I am using VS Code with the C# extension in it’s newest version together with the remote ssh extension to access the project on a server.
Any ideas as to why the intellisense isn’t working?