Showing results for Web Deployment - .NET Blog

Nov 10, 2010
0
0

ASP.NET Web Application: Publish/Package Tokenizing Parameters

Web Development Tools Microsoft
Web Development Tools Microsoft

  Today I just saw a question posted on stackoverflow.com asking Why are some Web.config transforms tokenised into SetParameters.xml and others are not? Let me give some background on this topic for those who are not aware of what the question is. With Visual Studio 2010 when you package your application using the Build Deployment Package cont...

ASP.NET
Nov 3, 2010
0
0

Web Deploy: How to see the command executed in Visual Studio during publish

Web Development Tools Microsoft
Web Development Tools Microsoft

I just saw a post on Twitter asking the question    Is there any easy way to see the underlying MSBuild command when building in VS2010? Want to see the MSDeploy params. @wdeploy?One thing to know is that when you publish from Visual Studio, by default we use the MSDeploy (AKA Web Deployment Tool) Object Model in order...

ASP.NET
Aug 9, 2010
0
0

An example of packaging web application containing database upgrade SQL file

Web Development Tools Microsoft
Web Development Tools Microsoft

A few months ago, we have a blog talking about extending the web publishing pipeline to package database project deployed SQL file.  In this blog, I’ll show step by step example of packaging web application with SQL Server database upgrade SQL file using Visual Studio 2010.  This way, we can generate a web package with incremental SQL scr...

ASP.NET
Jun 25, 2010
0
0

A practical example of using web application deployment package with IIS7

Web Development Tools Microsoft
Web Development Tools Microsoft

When a zip package is built from VS2010 web application UI (via Build Deployment Package command), or through command line (msbuild myproject.csproj /t:package), a few files are generated in the destination folder. Here’s some brief description: It’s very common to deploy our package to a IIS7 virtual application under Default Web ...

ASP.NET
May 14, 2010
0
0

The Aspnet Compiler Build Task in Visual Studio 2010 ASP.Net MVC 2 Projects

Web Development Tools Microsoft
Web Development Tools Microsoft

If you crack open the project file in an ASP.Net MVC 2 application (in notepad or unload your project and then click “Edit *.proj”), you will notice an interesting line. <MvcBuildViews>false</MvcBuildViews> This is an option to enable a post build task that will run the Asp_net compiler. This command will compile your aspx ...

ASP.NET
May 5, 2010
0
0

Hosting for ASP.NET 4.0 & Web Deploy from ORCS Web, DiscountASP, and MaximumASP

Web Development Tools Microsoft
Web Development Tools Microsoft

Visual Web Developer 2010 Express offers a great set of features for deploying web applications seamlessly.  One of the key features is the ability to publish your web application from VS 2010 to a remote hosted web server along with its dependencies like SQL Server database using “Web One Click Publish”.  VS 2010 integrates M...

ASP.NET
Apr 22, 2010
0
0

Web Deployment: Excluding Files and Folders via the Web Application’s Project File

Web Development Tools Microsoft
Web Development Tools Microsoft

Web Deployment (see this posting for an overview) offers a set of pre-determined options to allow users to include the most common sets of files for deployment.  These options are as follows and can be found under the “Items to deploy” section on the Package / Publish Web property page.   Only files needed to run this application: ...

ASP.NET
Apr 20, 2010
0
0

One-Click Publish – What’s New Since Beta 2

Web Development Tools Microsoft
Web Development Tools Microsoft

Publishing using MSDeploy In-Process Deployment or Remote Agent Through the Beta 2 release, VS 2010 had only supported publishing to servers using MSDeploy's IIS deployment handler technology integrated with the “Web Management Service”, a.k.a. WMSVC. As long as you had an account on a hosting server using WMSVC,...

ASP.NET
Mar 24, 2010
0
0

Extending the Web Publishing Pipeline to package database project deployed SQL file

Web Development Tools Microsoft
Web Development Tools Microsoft

A Visual Studio solution file may contain both database project and a web application project.  When deploying (not building) the database project, it can generate a .sql file containing the full sql file or an incremental upgrade file against a database.  This blogs walkthrough one way to package database project generated sql file into ...

ASP.NET
Mar 11, 2010
0
0

Issue with dependent assemblies when rebuilding a WAP and the Workarounds

Web Development Tools Microsoft
Web Development Tools Microsoft

In Visual Studio 2010, the dependent assembly of a custom control assembly will be deleted from the project’s Bin folder on project clean or rebuild if the project does not contain a reference to that dependent assembly. The result will be a WAP that successfully builds but fails at runtime. When adding a control from such a custom control assemb...

ASP.NET