我在同一台计算机上安装了VS 2012和VS 2013,并且必须使用2012来使用vs-addin编译Google NaCl(仅支持2012)。
如何更改Visual Studio软件用于编译代码的编译器版本?我已经明确地将Platform Toolset设置为VS2012(v11.0),但是在编译时,我看到以下关于版本的错误消息:
MATCH (m:Movie)-[r]-()
WITH m.title AS title, m.tmsId AS tmsId, count(r) AS rel_count
RETURN title, tmsId, rel_count ORDER BY rel_count DESC LIMIT 10
我理解1800意味着VS 2013,但我使用2012进行编译,并将Platform Toolset设置为2012。为什么它仍然认为_MSC_VER是1800,我怎么能强迫它使用我指定的那个?