发布的时候如果用 release
dotnet publish --configuration release
dotnet publish 默认都是debug
会出现 XML丢失问题,其实可以看下工程文件
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>bin\Debug\netcoreapp2.\UserServicesApi.xml</DocumentationFile>
</PropertyGroup>
注意到是Debug目录
或者看下项目属性的输出
修改一下 Release目录
所以发布 Release的时候要注意这个问题