G
Gregory Gadow
All done in ASP.Net 2.0 using VB...
The website I am developing has a large DLL that includes custom
MembershipUser, MembershipProvider and RoleProvider classes, several
frequently used web controls, custom base classes for Master and Page
objects, so on and so on.
All of this was done on my main dev machine, which I've also been using
to write the website. On the dev machine, the DLL references compile
Just In Time with no errors. Recently, though, one of my co-workers
started helping with the website. He's set up with VS 2005 on his
machine and we are sharing the source through Visual Source Safe, but he
can not reference the library. As a result, pages he writes that use
these objects end up with a lot of JIT errors, even though the page runs
fine when loaded through a browser from the website.
What do I need to do to get him a working copy of the DLL? And is there
any way to automate his getting it, so that when I post a new version to
the website, he will have access to that as well? This is code I do not
want to have available to others in our office (a few co-workers like to
"tinker"), so putting this in app_code would not be the best solution.
The website I am developing has a large DLL that includes custom
MembershipUser, MembershipProvider and RoleProvider classes, several
frequently used web controls, custom base classes for Master and Page
objects, so on and so on.
All of this was done on my main dev machine, which I've also been using
to write the website. On the dev machine, the DLL references compile
Just In Time with no errors. Recently, though, one of my co-workers
started helping with the website. He's set up with VS 2005 on his
machine and we are sharing the source through Visual Source Safe, but he
can not reference the library. As a result, pages he writes that use
these objects end up with a lot of JIT errors, even though the page runs
fine when loaded through a browser from the website.
What do I need to do to get him a working copy of the DLL? And is there
any way to automate his getting it, so that when I post a new version to
the website, he will have access to that as well? This is code I do not
want to have available to others in our office (a few co-workers like to
"tinker"), so putting this in app_code would not be the best solution.