Heroku dotnet core - libunwind.so.8: cannot open shared object - Common issue apparently Heroku dotnet core - libunwind.so.8: cannot open shared object - Common issue apparently heroku heroku

Heroku dotnet core - libunwind.so.8: cannot open shared object - Common issue apparently


The solution that worked for me was changing the code (project .csproj) to use dotnet core 2.1 instead of 2.0 and it solved the issue.

So instead of:

<Project Sdk="Microsoft.NET.Sdk.Web">  <PropertyGroup>    <TargetFramework>netcoreapp2.0</TargetFramework>  </PropertyGroup></Project>

I changed it to:

<Project Sdk="Microsoft.NET.Sdk.Web">  <PropertyGroup>    <TargetFramework>netcoreapp2.1</TargetFramework>  </PropertyGroup></Project>