.netcore在进行dotnet pack -c Release打包从网上下的库的时候报错问题

1、当从网上下载dotnet core的库,进行dotnet pack -c Release或dotnet build -c Release的时候提示错误问题

错误信息:

Microsoft.Build.Tasks.Git.targets(20,5): error : Unable to locate repository containing directory错误,

在.csproj文件中找到这块,删除即可

    

        

    

 

2、ubuntu 18.04在进行dotnet pack -c Release或dotnet build -c Release时提示

x86_64-linux-gnu/libcurl.so.4: version `CURL_OPENSSL_3' not found错误时,可以通过

sudo apt-get install libcurl3 安装即可解决

你可能感兴趣的:(c#)