ConfigurationManager.ActiveConfiguration プロパティ
更新 : 2007 年 11 月
ソリューション ビルド操作に使用する現在のソリューション構成を取得します。
名前空間 : EnvDTE
アセンブリ : EnvDTE (EnvDTE.dll 内)
構文
'宣言
ReadOnly Property ActiveConfiguration As Configuration
'使用
Dim instance As ConfigurationManager
Dim value As Configuration
value = instance.ActiveConfiguration
Configuration ActiveConfiguration { get; }
property Configuration^ ActiveConfiguration {
Configuration^ get ();
}
function get ActiveConfiguration () : Configuration
プロパティ値
Configuration オブジェクト。
解説
アクティブなソリューション構成を変更するには Activate メソッドを使います。
例
public void CodeExample(DTE2 dte, AddIn addin)
{ // Make sure you have a solution loaded into Visual Studio
// before running the following example.
try
{
ConfigurationManager configmgr;
Configuration config;
if (dte.Solution.Projects.Count > 0)
{
configmgr = dte.Solution.Projects.Item(1).ConfigurationManager;
// Return the ActiveConfiguration.
config = configmgr.ActiveConfiguration;
// Show how many Configuration objects are in the Configuration Manager.
MessageBox.Show(configmgr.Count.ToString());
// Show the name of the application containing this Configuration Manager.
MessageBox.Show(configmgr.DTE.Name);
// Show the parent object.
MessageBox.Show(((Project)configmgr.Parent).Name);
}
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
}
アクセス許可
- 直前の呼び出し元に対する完全な信頼。このメンバは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。