Example #1
0
        public override bool Execute()
        {
            Log.LogMessage("Start to generate documentation");
            if (LibraryPath.IsEmpty())
            {
                Log.LogWarning("Library not choosed");
                return(true);
            }
            LibraryPath = Path.GetFullPath(LibraryPath);



            if (OutputPath.IsEmpty())
            {
                OutputPath = Path.Combine(Path.GetDirectoryName(LibraryPath), "doc");
            }
            Directory.CreateDirectory(OutputPath);

            throw new NotImplementedException();
        }