I got the same error (as follows):
Copy-Item : Cannot find path 'C:\Development\GitHub\pd-tech-demo\backend\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0\tools\lib\net45' because it does not exist. At C:\Development\GitHub\pd-tech-demo\backend\packages\Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.0\tools\init.ps1:23 char:1 + Copy-Item $libDirectory\* $binDirectory | Out-Null + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (C:\Development\...tools\lib\net45:String) [Copy-Item], ItemNotFoundException + FullyQualifiedErrorId : PathNotFound,Microsoft.PowerShell.Commands.CopyItemCommand
I changed line 10 of init.ps1 to:
$libDirectory = Join-Path $installPath 'lib\net45'
at
$libDirectory = Join-Path $installPath '..\lib\net45'
which fixes the problem (only until you return the package again and get the damaged version).
The real fix is ββfor those supporting the service pack to update their copy of init.ps1 . I will follow up and see if we can do this. :)
Tod Thomson Aug 05 '15 at 8:06 2015-08-05 08:06
source share