Geeks With Blogs
Welcome to
Geeks with Blogs
Login
Michael Freidgeim
Personal Website / Bio
587 Posts
| 965 Comments
My Other Recent Posts
Batch file that required administrative privileges.
PowerShell function to delete if exist and create empty folder
Pocket on IPad: Ability to rename articles is still missing
Read CSV files with multiple lines
Tiny MCE editor in ASP.Net Web Form
Methods to verify, are DataTables or DataSets the same.
2 options to write tests for WCF Services
Angular JS vs Knockout JS -quotes and links
POSTSHARP error PS0052: The plug-in "PostSharp.Patterns.Diagnostics.Weaver" was not found
Misleading compiler error "is a 'type' but is used like a 'variable'"
News
My Blog has been MOVED to
https://mfreidge.wordpress.com
Post Categories
Windows 8
Stardock
RWD
7.8
Windows Phone 7.8
iOS
Image Optimization
Modern UI
Icon templates
media queries
Windows Phone 8
IE10
Drupal
installation
Brackets
code editor
HTML5
Anchor
Forms
CSS
Dev Docs
Bookmarklet
page speed
HTML Inspector
Snippets
CSS3
Responsive
WordPress
MotoPress
image aspect ratio
IE11 Developer Tools
24ways.org
CSS Frameworks
Browser Tools
ASP.NET Razor
Web Matrix
Firefox
Add-Ins
Favicon
succinctly
VS2015
Windows 10
Edge
Linx 1010
budget tablet
Archives
April 2016 (1)
February 2016 (9)
January 2016 (5)
August 2013 (6)
July 2013 (1)
June 2013 (5)
May 2013 (3)
March 2013 (3)
February 2013 (5)
December 2012 (4)
November 2012 (1)
October 2012 (4)
September 2012 (4)
August 2012 (3)
July 2012 (3)
June 2012 (4)
May 2012 (3)
April 2012 (11)
March 2012 (4)
January 2012 (3)
December 2011 (2)
November 2011 (1)
October 2011 (1)
September 2011 (8)
August 2011 (1)
July 2011 (4)
June 2011 (16)
May 2011 (11)
July 2010 (4)
June 2010 (8)
May 2010 (3)
March 2010 (1)
December 2009 (1)
November 2009 (3)
September 2009 (3)
August 2009 (1)
July 2009 (5)
June 2009 (5)
May 2009 (7)
April 2009 (2)
March 2009 (5)
February 2009 (5)
January 2009 (10)
December 2008 (8)
November 2008 (7)
October 2008 (5)
September 2008 (3)
August 2008 (4)
July 2008 (15)
June 2008 (4)
May 2008 (12)
April 2008 (6)
March 2008 (6)
February 2008 (14)
January 2008 (11)
December 2007 (2)
November 2007 (3)
October 2007 (18)
September 2007 (7)
August 2007 (2)
July 2007 (6)
June 2007 (9)
May 2007 (10)
April 2007 (2)
March 2007 (19)
February 2007 (5)
January 2007 (3)
December 2006 (6)
November 2006 (6)
October 2006 (7)
September 2006 (10)
August 2006 (17)
July 2006 (9)
June 2006 (6)
May 2006 (9)
April 2006 (7)
March 2006 (21)
February 2006 (22)
January 2006 (11)
December 2005 (5)
November 2005 (5)
October 2005 (8)
September 2005 (5)
August 2005 (4)
July 2005 (2)
Michael Freidgeim's OLD Blog
My Blog has been MOVED to
https://mfreidge.wordpress.com
<< Bookmarking for e-reading devices(Kindle and IPad)
|
Home
|
Javascript coding style recommendation: in return and throw statements use only simple variables >>
Using CTT to modify config files for different environments
Comments
|
Share
We previously tried to use msbuild to adjust configuration files for different environments.
Recently I found
C
onfig Transformation Tool(CTT) on CodePlex
and with
addition of global replace using powershell
it is enough and easier to do all required modifications
Content of ChangeConfig.cmd:
ctt s:..\web.config t:WebConfig.CTT d:..\web.config
powershell.exe -command "Get-Content ..\Remoting.config | ForEach-Object { $_ -replace '//localhost/ServicesCI/', '//ServerName01/ServicesCI/' } | Set-Content ..\remoting.temp"
powershell.exe -command "copy ..\remoting.temp ..\remoting.config"
ctt s:..\EnterpriseLibraryLogging.config t:EnterpriseLibraryLogging.CTT d:..\EnterpriseLibraryLogging.config
@goto end
@rem some code that currently not used
:End
@pause
Content of example
WebConfig.CTT
:
<?
xml
version="1.0"?>
<
configuration
xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform">
<
appSettings
>
<
add
key="ShowDeveloperExceptionInfo" value="False" xdt:Transform="Replace" xdt:Locator="Match(key)" />
</
appSettings
>
<
system.diagnostics
>
<
sharedListeners
>
<
add
name="ServiceModelMessageLoggingListener" initializeData="C:\temp\testCIcopy2.svclog" xdt:Locator="Match(name)" xdt:Transform="SetAttributes(initializeData)" />
</
sharedListeners
>
</
system.diagnostics
>
</
configuration
>
Extract from web.config -
sharedListeners section
<
sharedListeners
>
<
add
initializeData="C:\temp\TEST.svclog" type="System.Diagnostics.XmlWriterTraceListener, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" name="ServiceModelMessageLoggingListener" traceOutputOptions="Timestamp">
<
filter
type="" />
</
add
>
</
sharedListeners
>v
Posted on Sunday, December 4, 2011 10:47 PM
Deployment
,
Batch files/PowerShell
|
Back to top
Related Posts on Geeks With Blogs
Matching Categories
Powershell ISE missing features
Batch files/PowerShell
Batch file that required administrative privileges...
Batch files/PowerShell
PowerShell function to delete if exist and create ...
Batch files/PowerShell
Powershell: Install Exchange
Deployment
Powershell: Prepare for an Exchange installation
Deployment
Comments on this post: Using CTT to modify config files for different environments
No comments posted yet.
Your comment:
Title:
Name:
Email: (never displayed)
(will show your
gravatar
)
Comment:
Allowed tags: blockquote, a, strong, em, p, u, strike, super, sub, code
Verification:
Copyright © Michael Freidgeim | Powered by:
GeeksWithBlogs.net
Popular Posts on Geeks with Blogs
0
Code Monkey Projectiles - Index
Geeks With Blogs Content Categories
ASP.Net
SQL Server
Apple
Google
SharePoint
Windows
Visual Studio
Team Foundation Server
Agile
Office
Design Patterns
Web
Azure
Brand New Posts on Geeks with Blogs
0
How do you run multiple instances of Microsoft Teams?
Need Something to Do over the Break? How About 25 Free JavaScript Courses?
Benefits of Apple Cider Vinegar
Shaking down the Raspberry Pi 400
Blog is Moving