Msbuild的工具集版本

2023-07-08 11:20:59 浏览数 (1)

已经安装了VS2013,但用MSbuild编译的时候一直选择的是V11的设置,原来是这个环境变量的设置所致。如下设置就用的是V12(VS2013)的编译器。

代码语言:javascript复制
Set VCTargetsPath = C:Program Files (x86)MSBuildMicrosoft.Cppv4.0V120

Setting environment for using Microsoft Visual Studio 2010 x64 tools.

C:Program Files (x86)Microsoft Visual Studio 10.0VC>C:>dir /s /b /d MSBuild .exe ‘C:’ 不是内部或外部命令,也不是可运行的程序 或批处理文件。

C:Program Files (x86)Microsoft Visual Studio 10.0VC>msbuild Microsoft® 生成引擎版本 4.7.2053.0 [Microsoft .NET Framework 版本 4.0.30319.42000] 版权所有 © Microsoft Corporation。保留所有权利。

MSBUILD : error MSB1003: 请指定项目或解决方案文件。当前工作目录中未包含项目或解 决方案文件。

C:Program Files (x86)Microsoft Visual Studio 10.0VC>msbuild Microsoft® 生成引擎版本 4.7.2053.0 [Microsoft .NET Framework 版本 4.0.30319.42000] 版权所有 © Microsoft Corporation。保留所有权利。

MSBUILD : error MSB1003: 请指定项目或解决方案文件。当前工作目录中未包含项目或解 决方案文件。

C:Program Files (x86)Microsoft Visual Studio 10.0VC>

代码语言:javascript复制
Setting environment for using Microsoft Visual Studio 2010 x64 tools.

C:Program Files (x86)Microsoft Visual Studio 10.0VC>C:>dir /s /b /d  MSBuild
.exe
'C:' 不是内部或外部命令,也不是可运行的程序
或批处理文件。

C:Program Files (x86)Microsoft Visual Studio 10.0VC>msbuild
Microsoft(R) 生成引擎版本 4.7.2053.0
[Microsoft .NET Framework 版本 4.0.30319.42000]
版权所有 (C) Microsoft Corporation。保留所有权利。

MSBUILD : error MSB1003: 请指定项目或解决方案文件。当前工作目录中未包含项目或解
决方案文件。

C:Program Files (x86)Microsoft Visual Studio 10.0VC>msbuild
Microsoft(R) 生成引擎版本 4.7.2053.0
[Microsoft .NET Framework 版本 4.0.30319.42000]
版权所有 (C) Microsoft Corporation。保留所有权利。

MSBUILD : error MSB1003: 请指定项目或解决方案文件。当前工作目录中未包含项目或解
决方案文件。

C:Program Files (x86)Microsoft Visual Studio 10.0VC>
代码语言:javascript复制
@echo off
set Msbuild=C:Program Files (x86)Microsoft Visual Studio 10.0VC
set ObjCurrent=D:1multiVersionARXDBGplusmultiVersionArxDbg.verproj
set arxpath =D:1multiVersionARXDBGplusARXDBG2008ReleaseArxComLibWin32ArxComLib.arx
set Arrpath32=D:workhui zuhaoDwgCommonLib.Arx
Set Arrpath64=D:workhuizuhaoDwgCommonLibAry05mLibArxComLibx64ArxConLib.arx
setlocal enabledelayedexpansion
for /l %%i in (0,1,0) do (
echo !ObjCurrent%%i!
del %ArxPath32%
	%Msbuild% !ObjCurrent%%i! /t:build /p:Configuration-Release /p:Platform=Win32 /p:PlatformToolset=v80 /p:PrecompiledHeader=NotUsing /n
if not exist %ArxPath32%
	(%Msbuild% !ObjCurrent%%i! /t:build /p:Configuration=Release /p:Platform=Win32 /p:PlatformToolset=v80 /p:PrecompiledHeader=NotUsing /n
if not exist %ArxPath32%
	(%Msbuild% !ObjCurrent%%i! /t:clean
	%Msbuild% !%ObjCurrent%%i% /t:rebuild/ p:Configuration=Release /p:Platform=Win32 /p:PlatformToolset=v80 /p:PrecompiledHeader=NotUsing /n)
if not exlst %ArxPath32%
(echo v80
Pause)
)
del %ArxPath32%

%Msbuild% !ObjCurrent%%i!/t:build /p:Configuration-Release /p:Platform=Win32 /p:PlatformToolset=v90 /p:PrecompiledHeader=NotUsing /n
if not exist %ArxPath32%
	(%Msbuild% !ObjCurrent%%i! /t:build /p:Configuration=Release /p:Platform=Win32 /p:PlatformToolset=v90 /p:PrecompiledHeader=NotUsing /n
if not exist %ArxPath32%
	(%Msbuild% !ObjCurrent%%i! /t:clean
	%Msbuild% !%ObjCurrent%%i% /t:rebuild/ p:Configuration=Release /p:Platform=Win32 /p:PlatformToolset=v90 /p:PrecompiledHeader=NotUsing /n)
if not exlst %ArxPath32%
(echo v90
Pause)
)

del %ArxPath64%
%Msbuild% !ObjCurrent%%i!/t:build /p:Configuration-Release /p:Platform=x64 /p:PlatformToolset=v90 /p:PrecompiledHeader=NotUsing /n
if not exist %ArxPath32%
	(%Msbuild% !ObjCurrent%%i! /t:build /p:Configuration=Release /p:Platform=x64 /p:PlatformToolset=v90 /p:PrecompiledHeader=NotUsing /n
if not exist %ArxPath32%
	(%Msbuild% !ObjCurrent%%i! /t:clean
	%Msbuild% !%ObjCurrent%%i% /t:rebuild/ p:Configuration=Release /p:Platform=x64 /p:PlatformToolset=v90 /p:PrecompiledHeader=NotUsing /n)
if not exlst %ArxPath32%
(echo v90
Pause)
)
)

注意,vs2010的msbuild为

代码语言:javascript复制
Msbuild=C:Program Files (x86)Microsoft Visual Studio 10.0VC

0 人点赞