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
I also had this error. Changing line 10 of init.ps1 to: This did not work:
init.ps1
$libDirectory = Join-Path $installPath '..\lib\net45'
This did work:
$libDirectory = Join-Path $installPath '\lib\net45'