public DocBuilder(SDProject sdProject, WordStrings wordStrings, string docLanguage, string outputPath) { _sdProject = sdProject; _wordStrings = wordStrings; _docLanguage = docLanguage; _outputPath = outputPath; _templatePath = Helper.EnsureCopy( Path.Combine(Path.GetDirectoryName(GetType().Assembly.Location), "templates", "sharpDox.docx"), Path.Combine(outputPath, "tmp")); _wordTemplater = new WordTemplater(_templatePath); _apiBuilder = new ApiBuilder(_wordTemplater, _sdProject, _wordStrings, _docLanguage, outputPath); _articleBuilder = new ArticleBuilder(_wordTemplater, _sdProject, _apiBuilder); }