2

I want to create a winform/console application inside visual c# that uses class library project from visual web developer, how do I do that?

Thanks

SexyMF
  • 10,657
  • 33
  • 102
  • 206
  • Is this the expresss Vis Web Dev? I don't think it generates .dlls – Preet Sangha Sep 15 '11 at 03:58
  • yes, the express. So there is no normal way to make tests scripts for the web project from the Console? thanks – SexyMF Sep 15 '11 at 04:16
  • See this question for an answer. I was wrong... http://stackoverflow.com/questions/514900/is-there-a-way-to-generate-a-dll-file-from-visual-studio-express-without-explicit – Preet Sangha Sep 16 '11 at 10:20

1 Answers1

0
  1. Right-click on the references folder in the Solution Explorer pane
  2. Click Add Reference in the menu that appears
  3. Select the Browse tab
  4. Browse to the file you'd like to include
  5. Click OK

You're done! The file has been added to your references.

Cullub
  • 2,901
  • 3
  • 30
  • 47