Can you Create a Class Library Project in VS Personal?

A

Andrew Walsh

Is it possible to create a Class Library Project using the
personal edition of Visual Studio?

Trying to change the Output Type on a project already created only shows
Windows App and Console App.

Am I missing something obvious?

thanks
 
D

David Browne

Andrew Walsh said:
Is it possible to create a Class Library Project using the
personal edition of Visual Studio?

Trying to change the Output Type on a project already created only shows
Windows App and Console App.

You can use the command-line compilers to compile the .dll.
Stick your class library code in a single .cs file, and you can include the
file in a console app project for development and debugging. Then use
"csc.exe /target:library ,,," to actually build your .dll.



David
 

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

Top