dotfuscator problem

  • Thread starter Thread starter GooglePoster
  • Start date Start date
G

GooglePoster

I've dotfuscated a c# library assembly and added it to a
(non-dotfuscated) web project. I only want the library assembly to be
protected.

Now I get the compilation error:
The type or namespace name 'UtilsLib' could not be found (are you
missing a using directive or an assembly reference?)

If I replace with the non-dotfuscated version, it's fine. Any ideas?
Thanks in advance.
 
GooglePoster said:
I've dotfuscated a c# library assembly and added it to a
(non-dotfuscated) web project. I only want the library assembly to be
protected.

Now I get the compilation error:
The type or namespace name 'UtilsLib' could not be found (are you
missing a using directive or an assembly reference?)

If I replace with the non-dotfuscated version, it's fine. Any ideas?
Thanks in advance.

There should be a library option in the Options tab.
Dotfuscator should then properly handle the library by excluding public
types/methods/fields
 
Back
Top