Can you Create a Class Library Project in VS Personal?

  • Thread starter Thread starter Andrew Walsh
  • Start date Start date
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
 
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
 
Back
Top