记录自己发布.net core 程序遇到的坑

1.坑 1

用swagger中生成了xml文件,这两个文件在编译的时候存在,但是发布的时.net core官方限制了在发布的时候包含xml文件,所以我们需要处理下在发布之前,我们手动在文件下增加


  true

然后在发布。

2. Windows 环境下运行

> dotnet xxx.dll
Error:
  An assembly specified in the application dependencies manifest (xxx.deps.json) was not found:
    package: 'Microsoft.AspNetCore.Antiforgery', version: '2.0.1'
    path: 'lib/netstandard2.0/Microsoft.AspNetCore.Antiforgery.dll'
  This assembly was expected to be in the local runtime store as the application was published using the following target manifest files:
    aspnetcore-store-2.0.3.xml

 需要安装

你可能感兴趣的:(开发问题)