Hi, I've got an application designed (by someone else) to be able to totally diconnect the front end from the business logic and database layers. The idea being that I can do a win forms front end for one department, a asp.net front end for another department and use the same data classes and database IO classes on the back. So currently it only has a win forms application running off of it. That application is published to a production server and deployed with click once. Now I want to build a web app that utilizes the data classes and SQL IO functionality. Do I register the assemblies in the GAC and then reference them from the web app If so...
What does registering an assembly with gacutil do Does it copy the assembly, or does it reference the assembly you give it So if I do an updated publish of the assemblies do I need to re-register the assemblies ..Confused what the designer's vision was.