この記事は翻訳者によって翻訳されたものです。 記事の文章にポインターを重ねると、原文のテキストが表示されます。 |
訳文
原文
|
SolutionConfiguration インターフェイス
ソリューションのビルド方法に関する情報を表します。
アセンブリ: EnvDTE (EnvDTE.dll 内)
SolutionConfiguration 型で公開されるメンバーは以下のとおりです。
| 名前 | 説明 | |
|---|---|---|
|
Collection | このプロパティをサポートしている SolutionConfiguration オブジェクトを含んでいる SolutionConfigurations コレクションを取得します。 |
|
DTE | トップ レベルの機能拡張オブジェクトを取得します。 |
|
Name | オブジェクトの名前を取得または設定します。 |
|
SolutionContexts | SolutionContext オブジェクトのコレクションを取得します。 |
Sub SolutionConfigurationExample() ' Ensure all Debug project configurations are what are built for the ' Debug solution configuration. Dim config As SolutionConfiguration = DTE.Solution.SolutionBuild.SolutionConfigurations.Item("Debug") For each context in config.SolutionContexts Context.ConfigurationName = "Debug" Next End Sub