VisualStudioでのデバッグ環境と、配布する環境とでは記述を変える必要がある。
具体的には、
WCFクライアント設定のエンドポイントのアドレスを変えなければいけないのだが、、、
いちいちVisualStudioでサービス参照を書き換えるのは非常に面倒。
対策は簡単で、
ServiceReferences.ClientConfigを書き換えてビルドし直すだけで、
xapファイルに変更が反映される。
なので、以下のようにそれぞれの環境の設定をコメントアウトして残しておくと楽。
<client> <!-- <endpoint address="http://localhost:1335/HogeService.svc" binding="customBinding" bindingConfiguration="CustomBinding_HogeService" contract="HogeService.HogeService" name="CustomBinding_HogeService" /> --> <endpoint address="http://hoge.local/HogeService/HogeService.svc" binding="customBinding" bindingConfiguration="CustomBinding_HogeService" contract="HogeService.HogeService" name="CustomBinding_HogeService" /> </client>