Callum
Callum

Reputation: 77

Disable Resharper intellisense for single assembly

I'm working on a project that references a dll that has been obfuscated. The dll has many namespaces and classes that are single letters.

My issue is that many times while typing, Resharper will suggest classes from this assembly, e.g. if I am typing 'Report' it will suggest 'r.e.p' from this other assembly.

Is there a way I can get Resharper to ignore this one particular assembly for intellisense options?

Thanks

Upvotes: 4

Views: 789

Answers (3)

Alexander Kurakin
Alexander Kurakin

Reputation: 13523

It is not possible now - there is the same feature request.

Upvotes: 4

quantdev
quantdev

Reputation: 23793

If your source code is located under a single parent directory, Resharper allows you to exclude it:

Goto Resharper -> Options, Settings, then press the 'advanced button' There you can enter the directory and/or files to exclude from the solution wide analysis.

Upvotes: 0

pandeSai
pandeSai

Reputation: 117

Go to Resharper > Options > Intellisense. Just look at it if you can find what you are looking for.

Upvotes: -2

Related Questions