本文整理汇总了C#中MonoDevelop.Projects.Project.SupportsBuild方法的典型用法代码示例。如果您正苦于以下问题:C# Project.SupportsBuild方法的具体用法?C# Project.SupportsBuild怎么用?C# Project.SupportsBuild使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MonoDevelop.Projects.Project
的用法示例。
在下文中一共展示了Project.SupportsBuild方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ShouldRunGenerator
static bool ShouldRunGenerator (ProjectFile file, Project project, bool force, out SingleProjectFileCustomTool tool, out ProjectFile genFile)
{
tool = null;
genFile = null;
//ignore cloned file from shared project in context of referencing project
if ((file.Flags & ProjectItemFlags.DontPersist) != 0) {
return false;
}
tool = GetGenerator (file.Generator);
if (tool == null) {
return false;
}
if (project == null) {
// this might happen if the file is being removed from the project. Ideally we wouldn't hit this path
// because if we use the overload with the project param then we can pass the appropriate project
return false;
}
//ignore MSBuild tool for projects that aren't MSBuild or can't build
//we could emit a warning but this would get very annoying for Xamarin Forms + SAP
//in future we could consider running the MSBuild generator in context of every referencing project
if (tool is MSBuildCustomTool) {
if (!project.SupportsBuild ()) {
return false;
}
bool byDefault, require;
MonoDevelop.Projects.MSBuild.MSBuildProjectService.CheckHandlerUsesMSBuildEngine (project, out byDefault, out require);
var usesMSBuild = require || (project.UseMSBuildEngine ?? byDefault);
if (!usesMSBuild) {
return false;
}
}
if (!string.IsNullOrEmpty (file.LastGenOutput)) {
genFile = project.Files.GetFile (file.FilePath.ParentDirectory.Combine (file.LastGenOutput));
}
return force
|| genFile == null
|| !File.Exists (genFile.FilePath)
|| File.GetLastWriteTime (file.FilePath) > File.GetLastWriteTime (genFile.FilePath);
}