Path too long error when building a windows azure service

后端 未结 7 1801
星月不相逢
星月不相逢 2020-12-04 19:42

I have been trying to publish my service to windows azure. The service consists of a single webRole, however I have added remote login functionality published it and built i

7条回答
  •  生来不讨喜
    2020-12-04 20:16

    I was having this problem as well when deploying a Node.js project to Azure.

    To fix it, I had to change my "TEMP" and "TMP" user environment variables to something shorter than their default values.

    In my case, they were pointing by default to %USERPROFILE%\AppData\Local\Temp, changing them to C:\Temp solved it.

    Make sure you restart Windows after.

提交回复
热议问题