could not connect to Appwrapper.Please make sue that TCP port 12015 is not blocked.
一、安装QT后,打开VS2010时报错
could not connect to Appwrapper.Please make sue that TCP port 12015 is not blocked.(不能够打开Appwrapper,请确定TCP端口12015不会阻塞。)
二、我安装的QT版本为:
qt-opensource-windows-x86-msvc2010_opengl-5.4.1.exe
qt-vs-addin-1.2.4-opensource.exe
三、解决方法
1. 找到qt-vs-addin的安装目录,我的机器路径为:C:\Program Files (x86)\Digia\Qt5VSAddin;
2. 在安装路径下新建文本文件,改名为:qtappwrapper.exe.config
3. 打开上诉文件,增加内容如下:
<configuration>
<startup>
<supportedRuntime version="v5.4.1" />
</startup>
</configuration>
<startup>
<supportedRuntime version="v5.4.1" />
</startup>
</configuration>
保存退出即可;