我设置了一个Cloud Service,其中我在ServiceDefinition.csdef
中为WebRole指定了nodejs版本,如下所示:
<WebRole name="WebRole1">
<Startup>
<Task commandLine="setup_web.cmd > log.txt" executionContext="elevated">
<Environment>
<Variable name="RUNTIMEID" value="node;iisnode" />
<Variable name="RUNTIMEURL" value="http://az413943.vo.msecnd.net/node/0.10.21.exe;http://az413943.vo.msecnd.net/iisnode/0.1.21.exe" />
</Environment>
[...]
虽然这在Azure上运行时启用了Node 0.10.21,但当我使用模拟器运行时,我得到了一个古老的0.6.20。
这是模拟器的已知问题吗? (找不到任何内容)或者如何确保模拟器也使用所需的版本?