Well you will soon be faced to the problem related to the ServiceReferences.ClientConfig file.
Indeed, this file, which references the WCF services inside your *.xap, has to be different for every environment.
So how to automate something ??
Here are possible ways :
- Don't use those files, but rather store the information in a file such as WebConfig. It is a net solution especially if you are a Software vendor with many different customer (you dont want to unzip and edit your file per customer, just deliver exactly the same *.xap). However, this solution is quite 'tecky' to modify your Silverlight code to work that way,
- You could create a tool based on a library to unzip then edit your XAP, http://sharpdevelop.net/OpenSource/SharpZipLib/Default.aspx
- You could manually use 7-Zip to edit the Xap (just associate *.xap to 7-Zip) and change "Localhost" to your new endpoint,
- You could use for instance InstallShield / WIX installer to perform this task,
- An elegant and automated way is to use the *.csproj and Team Build to do that.
. ServiceReferences.Staging.ClientConfig
. ServiceReferences.Prod.ClientConfig
This is the solution detailed here after.
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
Using the include's functionnality of Microsoft.Common.targets (more info here or here) is the method used, except that we are going to do it for a TeamBuild 2010.
<Content Include="ServiceReferences.ClientConfig"> <SubType>DesignerSubType> Content> <Content Include="ServiceReferences.Staging.ClientConfig"> <DependentUpon>ServiceReferences.ClientConfigDependentUpon> Content>
Which gives the following in VS2010 :
Then, in the csproj, perform a conditional execution of a XCOPY. For instance use either Condition="'$(IsDesktopBuild)'=='true'" but it is no more supported. Or, prefer using $(BuildingInsideVisualStudio)
<!-- Detect if Build inside Visual Studio (i.e.) or Team Build TFS 2010 -->
<Exec Condition="$(BuildingInsideVisualStudio)=='true'"Command="XCOPY ServiceReferences.Dev.ClientConfig ServiceReferences.ClientConfig /R /Y"IgnoreExitCode="true" /><Exec Condition="$(BuildingInsideVisualStudio)!='true'"Command="XCOPY ServiceReferences.Staging.ClientConfig ServiceReferences.ClientConfig /R /Y"IgnoreExitCode="true" /><Exec Condition="$(BuildingInsideVisualStudio)!='true'"Command="DIR *.* > BuildingInsideVisualStudio_NotTrue.txt"IgnoreExitCode="true" /><Exec Condition="$(BuildingInsideVisualStudio)=='true'"Command="DIR *.* > BuildingInsideVisualStudio_True.txt"IgnoreExitCode="true" />Target>
Done !
Next step is to use the file ServiceReferences.Staging.ClientConfig the same way as a Web.Config file, that uses XSLT transform to decrease the amount of maintenance.
This is really very helpful for developers who are stucked in between program or who are not getting solution. Any ways i will be in touch with this blog, Instant Ecommerce Website
ReplyDelete