I guess that this is a really stupid question, knowing that .net-code can be viewed with tools such as Reflector but here it comes.
I have written a library in VS2008 (vb.net) which I am distributing to some people for testing. With the distibution, I am also attaching a sample-project(application) which uses my library. I thought that I would distribute the whole project-folder of the sample-application but then it struck me that the testers through debug-mode perhaps could "step into" the code of the library since a pdb-file (nameofmylibrary.pdb) is present.
I don't know how it all works but I just want to be sure that in case there is an error in my library, the testers can't access my library-code in debugging-mode (which I can having the sources of the library). How can I proceed in distributing the sample-application?
Thank you.