Can I create an "Empty Solution" using Visual Web Developer 2010 Express?

Can I create an "Empty Solution" using Visual Web Developer 2010 Express? It seems to me that this can be done with the VWD 2008 SP1 Express.

Anything to set up to get an empty solution? Or something similar so that I can get more than one solution for a new application? I have VS2008 Professional and would like to upgrade to VWD 2010 Express before I can get the VS2010 Professional version.

thanks for the help

+7
vwdexpress
source share
2 answers

First, specify the folder in which you will create the solutions.

Then, in VWD 2010 Express, create a new project from the File menu. Select the Windows templates under your preferred language (e.g. C #) and highlight Class Library. Name your class (ie, "Domain") and below that you have options to set the base directory for the solution folder "Create a new solution" and provide the "Solution name" in "Create a directory for the solution."

Then you can use the File → Add ... option to add resources to your solution.

+12
source share

I myself went into this problem. If I understand that you are saying correctly, this is what you want to do.

Go to File → New Project → (in the “Installed Templates” section) click and parse the desired language (VB or C #) → click Web → and right go to the ASP.NET Empty web application. This will create the necessary properties, links, and Web.config files.

Then just click “File” → “Create File” ... → Click on the desired language → Click “Internet” → and select what you want to include. in your case a web form.

That's all.

+1
source share

All Articles