Framework 3.5 SDK

  • Thread starter Thread starter Roger Hsieh
  • Start date Start date
R

Roger Hsieh

How do you add a Class created in Visual Studio 2008 into GAC? There is no SDK for 3.5 that I can find. I was able to add the class to the config for 2.0, but not sure if that is correct.
 
How do you add a Class created in Visual Studio 2008 into GAC? There is no SDK for 3.5 that I can find. I was able to add the class to the config for 2.0, but not sure if that is correct.

You do not add classes to GAC, you add assemblies. This should do the
trick from the command line:

gacutil /i assembly.dll
 

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

Back
Top