creating class library in visual web dev 2005 express

  • Thread starter Thread starter pb
  • Start date Start date
P

pb

Is it possible to create a class library in visual web developer 2005
express edition and complie into a dll?

If so how?
 
Nope. However, you can use either Visual Basic Express or Visual C# Express
(both free) to create class libraries.
 
Just to follow up.

You can get both freebies.

You can edit the class library in Express Editions.

You can reference these from the WebDev2005 project.

You just can't have both items in the same window.

I did this for a while when 2.0 first came out.

Its a pain, but tolerable.
 
Just to follow up.

You can get both freebies.

You can edit the class library in Express Editions.

You can reference these from the WebDev2005 project.

You just can't have both items in the same window.

I did this for a while when 2.0 first came out.

Its a pain, but tolerable.







- Show quoted text -

Thanks, got this all sorted thanks to the pointers. Here's what I
did...

1. Developed the code in in App_code in visual web developer 2005
express
2. compiled to dll by copying code to vb 2005 express.
3. stick the final dll in the web bin directory
4. just add an imports dllname.namespacename to the web code.

Everything worked fine.
 
Back
Top