dotfuscator problem

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.
 
C

CSharped

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top