Visual Studio Deployment -IIS - visual-studio

I have a web application created in visual studio. I wish to deploy it as an intranet -IIS. How to proceed?

here is full tutorial to do this :
ASP.NET Web Deployment using Visual Studio
here is deployment through Azure :
ASP.NET MVC - Deployment

Related

Visual studio 2013 web publish to web deploy 3.0

Is it possible to publish a web application to a server with web deploy 3.0 from visual studio 2013 ? I know that visual studio 2013 ships with web deploy 3.5, but I was unable to find any information if I am going to be able to publish to web deploy 3.0

Visual Studio 2012 Express MVC 3 deployment

I have developed a a MVC 3 application in Visual Studio 2012 express and I'm trying to create a web deployment package following the documentation in this link:
http://msdn.microsoft.com/query/dev11.query?appId=Dev11IDEF1&l=EN-US&k=k(WebApplicationProjects.PackagePublishOverview);k(TargetFrameworkMoniker-.NETFramework,Version%3Dv4.0)&rd=true
I have a couple of issues.
1. I cannot select deploy check box in the configuration manager, it is greyed out
2. The zip file is not being created
Is this a limitation of the version of visual studio or am I going about deploying this type of project wrong. Due to the nature of the application the web deployment package is the best deployment option.

Difference between Web Deployment Projects (.wdproj) and MSDeploy

What is the difference between Web Deployment Projects (.wdproj) and new
MSDeploy?
Is it prefer to use MSDeploy instead of Web Deployment Projects?
Is this add-in created only for backward compatibility with already created Visual Studio 2005/2008 projects, or it's a product, which will be evolving?
Web Deployment Projects and Web Deploy (aka MSDeploy) are not mutually exclusive; you can use a WDP to create a Web Deploy deployment package. Web Deploy is an IIS tool that can be used by Visual Studio or MSBuild. In Visual Studio 2010 the Web Publishing Pipeline is implemented using MSBuild so that it can work the same way from the IDE (the one-click publish feature) or by invoking MSBuild targets from the command line. See this MSDN page:
http://msdn.microsoft.com/en-us/library/dd394698.aspx
If you're using VS 2010 or later and you are using web application projects rather than web site projects, you don't need Web Deployment Projects unless you want to build a precompile/merge step into deployment. If you're using web site projects, you still need to use Web Deployment Projects.
WDP's days are numbered, it will not be evolving.

Is it possible to open web application project from web in Visual Studio 2010

I been using Web Application project with Visual Studio 2003 for many years, and I finally decided to migrate to Visual Studio 2010 Pro. I did use the convert wizard with success to migrate my Web Application project.
However, there is one thing that I am not able to do with VS 2010 that I was able to do with VS 2003 : open a project from web. (important : here I mean a Web Application Project, not a Web Site Project)
VS 2010 only seems to offer the option to open Web Site Project from a web location. I want to keep using Web Application Project, and I am only able to open Web Application Project on my own computer or on my network, but I am not able anymore to open a Web Application Project using http location. This feature was available in VS 2003 and I really can't find the same in VS 2010.
Can you help?
new project -> language -> web -> ASP.NET Web Application

where to access the website administration tool in visual studio 2008 professional?

does anyone know where to access the website administration tool in visual studio 2008 professional?
That depends on whether you are using Web sites or Web application projects.
For web sites it is Website --> ASP.NET configuration.
For Web application it is Project --> ASP.NET configuration.
Open a Web project and use the Project menu, ASP.NET Configuration.
Website -> ASP.NET Configuration

Resources