Ejemplo n.º 1
0
        /// <summary>
        /// Execute the generate command
        /// </summary>
        private void GenerateCommandExecute()
        {
            if (this.FilteredModel == null || this.FilteredModel.Count == 0 || string.IsNullOrWhiteSpace(this.OutputPath)) return;

            var docGen = new HtmlGenerator();

            docGen.GenerateDocumentation(this.FilteredModel[0], this.OutputPath, this.ModelName, this.ModelVersion, this.ModelDescription, this.topLevelFilters, this.bottomLevelFilters, this.propertyFilters);
        }