Configuration.IsBuildable 屬性
取得是否能建置專案或專案項目的組態。
命名空間: EnvDTE
組件: EnvDTE (在 EnvDTE.dll 中)
語法
'宣告
ReadOnly Property IsBuildable As Boolean
bool IsBuildable { get; }
property bool IsBuildable {
bool get ();
}
abstract IsBuildable : bool
function get IsBuildable () : boolean
屬性值
型別:System.Boolean
如果應該建置專案或專案項目,布林值會表示為 true,否則為 false。
備註
若要表示是否應該建置專案或項目,請在 SolutionContext 指定該專案或項目是有內容的組態,並且是為指定的方案組態建置。
範例
public void CodeExample(DTE2 dte, AddIn addin)
{ // Make sure you have a solution loaded into Visual Studio
// before running the following example.
try
{
Project prj;
Configuration config;
if (dte.Solution.Projects.Count > 0)
{
prj = dte.Solution.Projects.Item(1);
config = prj.ConfigurationManager.ActiveConfiguration;
// Determine and show whether the active configuration is buildable.
MessageBox.Show(config.IsBuildable.ToString());
}
}
catch(Exception ex)
{
MessageBox.Show(ex.Message);
}
}
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。