When I publish from Visual Studio 2010, VS transforms my web.config file according to my Web.Debug.config or Web.Release.config.

Is there a way to do that using aspnet_compiler or any other way with albacore?

link|improve this question

74% accept rate
feedback

1 Answer

up vote 1 down vote accepted

A similar question was asked on the mailing list, recently: http://groups.google.com/group/albacoredev/browse_thread/thread/e4129fa1f4bec994

I don't know if this is the same situation that you are facing, but hopefully it will help you out. Based on the needs of that person, I recommended the following for the msbuild task:


CLIENT_SOURCE_DIR = "C:/Builds/MySolution/Source/Client/"
 PUBLISH_CLIENT_DIR = "C:/Builds/MySolution/Publish/Client/"
 desc "Publish the web site"
 msbuild :publish do |msb|
 msb.targets [:Clean, :Rebuild]
 msb.properties = { :configuration => :Release, :UseWPP_CopyWebApplication => true, :PipelineDependsOnBuild => false,
 :webprojectoutputdir => "#{PUBLISH_CLIENT_DIR}/",
 :outdir => "#{PUBLISH_CLIENT_DIR}/bin/"
 }
 msb.solution = "#{CLIENT_SOURCE_DIR}/Client.csproj"
 end 

I hope that helps.

link|improve this answer
Thanks, I found out what I needed in that thread – VinTem May 10 '11 at 21:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.