Problems with .net-core self contained publish

依然范特西╮ 提交于 2019-12-04 18:25:43

问题


I`m trying to publish a self-contained app, made in .net-core, following the steps in https://docs.microsoft.com/en-us/dotnet/articles/core/deploying/index.

The repository with the code is in https://github.com/fontanaricardo/httpecho

I execute the commands:

$dotnet build -r debian.8-x64
$dotnet publish -c Release -r debian.8-x64
$docker build -t httpecho .

Starting the container:

$ docker run -p 5000:5000 httpecho
Error: assembly specified in the dependencies manifest was not found -- package: 'Microsoft.AspNetCore.Hosting.Abstracti
ons', version: '1.1.0', path: 'lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll'

I'm doing something wrong?

Update

Open the file httpecho.deps.json, in publish folder, references the folder that not exists.

"runtime": {
      "lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll": {}
    }

回答1:


Your device have problem with proper distibute packages into your self contained publish (tried on my worked well). Try to fix packages by dotnet restore

Is there Microsoft.AspNetCore.Http.Abstractions.dll in debian.8-x64\publish? If not try to add manually (and all other missing *.dll's) and then try to run. If it will run without errors will be problem with proper distibute packages



来源:https://stackoverflow.com/questions/42194718/problems-with-net-core-self-contained-publish

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!