1

The code compiles fine but the standard Analysers of Visual Studio is reporting a lot of errors. e.g.:

using cleverDev.WpfUtils.WPF;

Error reported:

Type or Namespace name 'WpfUtils' does not exist in namespace cleverDev

But everything is fine. The Namespace exists, the code is compiled fine and also resharper finds the namespace.

The reference (Project Reference) bringing in the namespace is also working fine in other solutions. I already tried to delete the reference and recreate it, bring it in in different ways, Rebuild a couple of times, nothing helps.

Markus
  • 2,184
  • 2
  • 22
  • 32
  • 1
    Sounds like an IntelliSense problem, I suggest that you try the approaches suggested in the answers to this question: https://stackoverflow.com/q/37015074/87698 – Heinzi Jul 02 '20 at 08:14
  • @Heinzi thanks for your quick replay, looks like deleteing the complete .vs folder in this solution resolved the problem. – Markus Jul 02 '20 at 08:22

1 Answers1

2

Commend of @Heinzi included the solution.

I deleted the complete .vs folder of this solution an the problem was gone.

Markus
  • 2,184
  • 2
  • 22
  • 32