NAnt.DotNet.Tasks.CscTask.NeedsCompiling C# (CSharp) Метод

NeedsCompiling() защищенный Метод

Determines whether compilation is needed.
protected NeedsCompiling ( ) : bool
Результат bool
        protected override bool NeedsCompiling()
        {
            if (base.NeedsCompiling()) {
                return true;
            }

            if (DocFile != null && SupportsDocGeneration) {
                if (!DocFile.Exists) {
                    Log(Level.Verbose, ResourceUtils.GetString("String_DocFileDoesNotExist"),
                        DocFile.FullName);
                    return true;
                }
            }

            return false;
        }