Configuration.IsBuildable 属性
获取指示是否可以生成项目或项目项配置的值。
命名空间: EnvDTE
程序集: EnvDTE(在 EnvDTE.dll 中)
语法
声明
ReadOnly Property IsBuildable As Boolean
bool IsBuildable { get; }
property bool IsBuildable {
bool get ();
}
abstract IsBuildable : bool with get
function get IsBuildable () : boolean
属性值
类型: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 安全性
- 对直接调用方的完全信任。此成员不能由部分信任的代码使用。有关详细信息,请参阅通过部分受信任的代码使用库。