0

Visual Studio 2010 中用于 C# 编译的 Web 项目的属性中没有“构建”选项卡。有没有办法在不修改 webconfig 文件的情况下为 web 项目中的 c# 代码生成 XML 文档?

我试过这样做:http ://www.ewoodruff.us/shfbdocs/html/94c7f744-9b90-4254-93ab-9b15f47d9f42.htm

但我收到以下错误:gacutil : The term 'gacutil' is not recognized as the name of a cmdlet, function, script file, or operable program. 当我尝试在 GAC 中注册 EWSoftware.CodeDom.dll 程序集时

4

1 回答 1

4

有一个用于生成 MSDN 样式文档的 Microsoft 工具,称为Sandcastle

它基于代码中 XML 注释的类/属性描述,例如:

    /// <summary>
    /// Description of Method
    /// </summary>
    /// <param name="GroupID">Description of GroupID Parameter</param>
    /// <returns>Description of return value</returns>
于 2013-11-05T15:34:26.063 回答