SexyMF
SexyMF

Reputation: 11155

Visual Web developer - console application , how to

I am learning in the visual web developer c#, entity framework, and webservices.
I want to be able to run the entity framework for example with out building it a gui, or run a browser. So condole application with reference can do the job. Can I add a console application to my Visual Web developer solution?

Thanks

Upvotes: 19

Views: 6976

Answers (2)

Levin
Levin

Reputation: 2005

FWIW. In VWD 2010, you can create a library project, then go under project properties and change the project to Console application, and create a method "public static void Main(String[] args) {}", and it will build a console app for you.

Upvotes: 41

Daniel A. White
Daniel A. White

Reputation: 190945

No. You will need Visual C# Express. VWD only works with web projects. Visual C# Express should have this project template.

Upvotes: 0

Related Questions