0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

環境ごとにApp.configファイルを分ける【Windowsフォームアプリケーション】

Posted at

1・既存の App.config をコピーして App.Debug.configApp.Release.config を作成する。

image.png

2・ソリューション エクスプローラーからプロジェクトのプロパティを開く。

image.png

3・ [ビルド イベント]-[ビルド後イベントのコマンド ライン] に以下のコードを追加する。

ビルド後イベントのコマンド ライン
set src=$(ProjectDir)App.$(ConfigurationName).config
set dest=$(TargetDir)$(ProjectName).exe.config
copy %src% %dest%

image.png

これで、Debugビルドの場合は App.Debug.config を、Releaseビルドの場合は App.Release.config を読み込んでくれるはずです。

0
0
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?