Nuget package manager update 3.1.1.0 broken

前端 未结 5 1505
北海茫月
北海茫月 2020-12-30 01:05

I updated Nuget package manager to version 3.1.1.0. After the update opening any project gives me the error message: copy-item: cannot find path \'c:\\users{username}\\docum

5条回答
  •  鱼传尺愫
    2020-12-30 01:28

    I also had this error. Changing line 10 of init.ps1 to: This did not work:

    $libDirectory = Join-Path $installPath '..\lib\net45'
    

    This did work:

    $libDirectory = Join-Path $installPath '\lib\net45'
    

提交回复
热议问题