File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22<Project DefaultTargets =" Build" xmlns =" http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion =" 4.0" >
33
44 <!-- General -->
5- <UsingTask TaskName =" TransformXml" AssemblyFile =" $(MSBuildExtensionsPath)\Microsoft\VisualStudio\v10 .0\Web\Microsoft.Web.Publishing.Tasks.dll" />
5+ <UsingTask TaskName =" TransformXml" AssemblyFile =" $(MSBuildExtensionsPath)\Microsoft\VisualStudio\v12 .0\Web\Microsoft.Web.Publishing.Tasks.dll" />
66
77 <!-- Initialization -->
88
Original file line number Diff line number Diff line change 11set MSBuildPath = %windir% \Microsoft.NET\Framework\v4.0.30319\MSBuild.exe
22
3- @ IF NOT EXIST %MSBuildPath% @ ECHO COULDN'T FIND MSBUILD: %MSBuildPath% (Is .NET 4 installed?)
3+ @ IF NOT EXIST %MSBuildPath% @ ECHO COULDN'T FIND MSBUILD: %MSBuildPath% (Is .NET 4 installed?)
4+ ELSE GOTO END
5+
6+ :CheckOS
7+ IF EXIST " %PROGRAMFILES(X86)% " (GOTO 64BIT) ELSE (GOTO 32BIT)
8+
9+ :64BIT
10+ echo 64-bit...
11+ set MSBuildPath = " %ProgramFiles(x86)% \MSBuild\12.0\Bin\MSBuild.exe"
12+ GOTO END
13+
14+ :32BIT
15+ echo 32-bit...
16+ set MSBuildPath = " %ProgramFiles% \MSBuild\12.0\Bin\MSBuild.exe"
17+ GOTO END
18+
19+ :END
420
521%MSBuildPath% SmartStoreNET.proj /p:DebugSymbols=false /p:DebugType=None /P:SlnName=SmartStoreNET /maxcpucount %*
You can’t perform that action at this time.
0 commit comments