Showing results for Web.Config Transformation - .NET Blog

Aug 27, 2018
1
0

ASP.NET Core 2.2.0-preview1: Endpoint Routing

Glenn Condron [MSFT]
Glenn Condron [MSFT]

Endpoint Routing in 2.2 What is it? We're making a big investment in routing starting in 2.2 to make it interoperate more seamlessly with middleware. For 2.2 this will start with us making a few changes to the routing model, and adding some minor features. In 3.0 the plan is to introduce a model where routing and middleware operate together ...

ASP.NETASP.NET Core
Oct 24, 2013
0
0

How to use XDT in NuGet – Examples and Facts

danliu-nuget
danliu-nuget

Starting with NuGet 2.6, XML-Document-Transform (XDT) is supported to transform XML files inside a project. The XDT syntax can be utilized in the .install.xdt and .uninstall.xdt file(s) under the package’s Content folder, which will be applied during package installation and uninstallation time, respectively. One of XDT’s greatest ...

ASP.NET
Apr 22, 2013
0
0

XDT (XML Document Transform) released on codeplex.com

Sayed Ibrahim Hashimi
Sayed Ibrahim Hashimi

In Visual Studio 2010 we introduced a simple and straight forward method of transforming web.config during publishing/packaging. This support is called XML Document Transform, aka XDT. It allows you to transform any XML file, not just web.config. To learn more about XDT check out the docs. Since we've released XDT there has been interest in re-...

ASP.NET
Jun 7, 2011
0
0

Walkthrough: deploy a web application with SQL CE 4.0 database to IIS host with SQL Server.

Web Development Tools Microsoft
Web Development Tools Microsoft

With VS2010 sp1, we added SQL CE 4.0 support. You can view more information about SQL CE 4.0 from the following sites: Here is a walk through of how to deploy a SQL CE database to SQL Server database using web application publish. 1. Create a web application 2. Add a SQL CE 4.0 database via “Add New item”: 3. In server ...

ASP.NET
Jan 8, 2011
0
0

Video on Web Deployment using Visual Studio 2010 and MSDeploy

Web Development Tools Microsoft
Web Development Tools Microsoft

Back in November I participated in Virtual Tech Days which is an online conference presented by Microsoft. In the session I discussed the enhancements to web deployment using Visual Studio 2010 and MSDeploy. Some of the topics which I covered includ: You can download the video & all of my sample files at http...

ASP.NET
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 ...

ASP.NET
Oct 26, 2010
1
1

ASP.NET Web Projects: web.debug.config & web.release.config

Web Development Tools Microsoft
Web Development Tools Microsoft

DIsclaimer: You may experience some in-consistent behavior using this technique. If so please let us know. I have heard a lot of questions and confusion regarding web.debug.config and web.release.config. For example here is just one question on StackOverflow. The question states: First let me explain, as I did to that question, the purpose of the ...

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, 2009
1
0

Web Deployment: Web.Config Transformation

Web Development Tools Microsoft
Web Development Tools Microsoft

We have earlier discussed about Web Deployment and Web Packaging quite a bit, today I wanted to dive into web.config transformation. If you would like to check out the other topics please read through the earlier blog posts below: Usually web applications go through a chain of server deployments before being finally being ...

ASP.NET