I've got a solution with several different projects in it, some are pure class libraries and some are web app projects. If I want my default types to be available to all projects, where should I put the config file for the container?
Microserf
質問する
358 次
1 に答える
1
私がよく行うのは、ソリューションのルート ディレクトリに作成することです。次に、それを必要とするプロジェクトごとに、次のことを行います。
- 右クリック->既存を追加
- ファイルを参照して選択する
- 下矢印をクリックし、「リンクとして追加」を選択します
- プロジェクト内のファイルを選択
- プロパティ
- ビルド アクション -> コンテンツ
- 出力ディレクトリにコピー -> 新しい場合はコピー
次に、Dependency Inject フレームワークを初期化するときに、次のようなものを使用できますServer.MapPath("~/bin/filename.config")
。
于 2008-10-17T23:36:46.060 に答える