Hi,
NTVS Version: NTVS Dev 2014-03-12 VS 2013.msi
VS Version : Visual Studio 2013 Ultimate
I have a simple Express app that is using the "googleapis" package. On build, it tries to copy into the obj\Debug folder but errors with the following:
```
Error 1 Unable to copy file ".\node_modules\googleapis\node_modules\gapitoken\node_modules\jws\node_modules\tap\node_modules\runforcover\node_modules\bunker\node_modules\burrito\node_modules\uglify-js\test\unit\compress\expected\assignment.js" to "obj\Debug\.\node_modules\googleapis\node_modules\gapitoken\node_modules\jws\node_modules\tap\node_modules\runforcover\node_modules\bunker\node_modules\burrito\node_modules\uglify-js\test\unit\compress\expected\assignment.js". The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters.
C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\Node.js Tools\Microsoft.NodejsTools.targets 74
```
Note sure how you guys will overcome this OS limitation :)
Comments: I wonder if we could hardlink it, actually. But there are more things breaking there than the copy, just in more subtle ways. Deployment will break, for example (basically, most anything that involves passing file paths through MSBuild will). Code completion will not be able to handle those modules. And so on.
NTVS Version: NTVS Dev 2014-03-12 VS 2013.msi
VS Version : Visual Studio 2013 Ultimate
I have a simple Express app that is using the "googleapis" package. On build, it tries to copy into the obj\Debug folder but errors with the following:
```
Error 1 Unable to copy file ".\node_modules\googleapis\node_modules\gapitoken\node_modules\jws\node_modules\tap\node_modules\runforcover\node_modules\bunker\node_modules\burrito\node_modules\uglify-js\test\unit\compress\expected\assignment.js" to "obj\Debug\.\node_modules\googleapis\node_modules\gapitoken\node_modules\jws\node_modules\tap\node_modules\runforcover\node_modules\bunker\node_modules\burrito\node_modules\uglify-js\test\unit\compress\expected\assignment.js". The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters.
C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\Node.js Tools\Microsoft.NodejsTools.targets 74
```
Note sure how you guys will overcome this OS limitation :)
Comments: I wonder if we could hardlink it, actually. But there are more things breaking there than the copy, just in more subtle ways. Deployment will break, for example (basically, most anything that involves passing file paths through MSBuild will). Code completion will not be able to handle those modules. And so on.