12

我有 ASP.NET Web API 项目,我想添加一个帮助页面,但我希望它位于一个单独的项目中。

可能吗 ?

4

2 回答 2

1

您应该在帮助项目的 Web API 项目中调用 WebApiConfig.Register:

  protected void Application_Start()
  {
     AreaRegistration.RegisterAllAreas();
     RouteConfig.RegisterRoutes(RouteTable.Routes);
     GlobalConfiguration.Configure(MyApiProjectNamespace.WebApiConfig.Register);
  }
于 2016-12-26T08:14:41.010 回答
0

您可以将构造函数重写XmlDocumentationProvider为:

public XmlDocumentationProvider(string appDataPath)
{
    if (appDataPath == null)
    {
        throw new ArgumentNullException(nameof(appDataPath));
    }

    var files = new[] { "MyWebApiProject.xml" /*, ... any other projects */ };
    foreach (var file in files)
    {
        var xpath = new XPathDocument(Path.Combine(appDataPath, file));
        _documentNavigators.Add(xpath.CreateNavigator());
    }
}

它将包括您在数组中列出的所有 xml 文档文件。您还应该确保您的目标 Web API 项目(以及所有模型项目,如果需要)生成有关构建的文档并将其复制到正确的位置。 在此处输入图像描述

于 2016-04-21T18:10:00.930 回答