在Visual Studio 2010 for 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程序集时
答案 0 :(得分:2)
有一个用于生成MSDN样式文档的Microsoft工具,名为Sandcastle。
它将类/属性描述基于代码中的XML注释,如下所示:
/// <summary>
/// Description of Method
/// </summary>
/// <param name="GroupID">Description of GroupID Parameter</param>
/// <returns>Description of return value</returns>