Home
last modified time | relevance | path

Searched full:msbuild (Results 1 – 25 of 1158) sorted by relevance

12345678910>>...47

/external/python/cpython3/PCbuild/
Dfind_msbuild.bat2 @rem Searches for MSBuild.exe. This is the only tool we need to initiate
6 @rem the MSBUILD variable), so we do not use setlocal or echo, and avoid
19 @if exist "%*" (set MSBUILD="%*") & (set _Py_MSBuild_Source=environment) & goto :found variable
23 @if exist "%~1" (set MSBUILD="%~1") & (set _Py_MSBuild_Source=environment) & goto :found variable
26 @set MSBUILD= variable
28 @rem If msbuild.exe is on the PATH, assume that the user wants that one.
29 @where msbuild > "%TEMP%\msbuild.loc" 2> nul && set /P MSBUILD= < "%TEMP%\msbuild.loc" & del "%TEMP…
30 @if exist "%MSBUILD%" set MSBUILD="%MSBUILD%" & (set _Py_MSBuild_Source=PATH) & goto :found variable
35 …requires Microsoft.VisualStudio.Component.VC.Tools.x86.x64') DO @(set _Py_MSBuild_Root=%%i\MSBuild)
37 …5.0) DO @if exist "%_Py_MSBuild_Root%\%%j\Bin\msbuild.exe" (set MSBUILD="%_Py_MSBuild_Root%\%%j\Bi… variable
[all …]
Dprepare_tcltk.bat41 call "%PCBUILD%\find_msbuild.bat" %MSBUILD%
42 if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2)
49 %MSBUILD% "%PCBUILD%\tcl.vcxproj" /p:Configuration=Release /p:Platform=Win32
50 %MSBUILD% "%PCBUILD%\tk.vcxproj" /p:Configuration=Release /p:Platform=Win32
51 %MSBUILD% "%PCBUILD%\tix.vcxproj" /p:Configuration=Release /p:Platform=Win32
53 %MSBUILD% "%PCBUILD%\tcl.vcxproj" /p:Configuration=Release /p:Platform=x64
54 %MSBUILD% "%PCBUILD%\tk.vcxproj" /p:Configuration=Release /p:Platform=x64
55 %MSBUILD% "%PCBUILD%\tix.vcxproj" /p:Configuration=Release /p:Platform=x64
57 %MSBUILD% "%PCBUILD%\tcl.vcxproj" /p:Configuration=Release /p:Platform=ARM64
58 %MSBUILD% "%PCBUILD%\tk.vcxproj" /p:Configuration=Release /p:Platform=ARM64
[all …]
Dbuild.bat4 echo.%~nx0 [flags and arguments] [quoted MSBuild options]
10 echo.directly to MSBuild may be passed. If the argument contains an '=', the
12 echo.Alternatively you can put extra flags for MSBuild in a file named
13 echo.`msbuild.rsp` in the `PCbuild` directory, one flag per line. This file
14 echo.will be picked automatically by MSBuild. Flags put in this file does not
86 rem These use the actual property names used by MSBuild. We could just let
116 call "%dir%find_msbuild.bat" %MSBUILD%
117 if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2)
149 %MSBUILD% "%dir%\pythoncore.vcxproj" /t:KillPython %verbose%^
158 %MSBUILD% "%dir%\pythoncore.vcxproj" /t:Regen %verbose%^
[all …]
Dprepare_ssl.bat39 call "%PCBUILD%\find_msbuild.bat" %MSBUILD%
40 if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2)
50 %MSBUILD% "%PCBUILD%\openssl.vcxproj" /p:Configuration=Release /p:Platform=Win32
52 %MSBUILD% "%PCBUILD%\openssl.vcxproj" /p:Configuration=Release /p:Platform=x64
54 %MSBUILD% "%PCBUILD%\openssl.vcxproj" /p:Configuration=Release /p:Platform=ARM
56 %MSBUILD% "%PCBUILD%\openssl.vcxproj" /p:Configuration=Release /p:Platform=ARM64
Dpcbuild.proj2 …aultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
98 <MSBuild Projects="@(FreezeProjects)"
103 <MSBuild Projects="@(Projects)"
108 <MSBuild Projects="@(Projects2)"
116 <MSBuild Projects="@(Projects2)"
122 <MSBuild Projects="@(Projects)"
128 <MSBuild Projects="@(FreezeProjects)"
137 <MSBuild Projects="@(Projects2)"
143 <MSBuild Projects="@(Projects)"
149 <MSBuild Projects="@(FreezeProjects)"
Dpython.props2 <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
27 Convincing MSVC/MSBuild to prefer our platform names is too difficult,
114 let the MSBuild targets determine which one it wants to use (typically the earliest
205 <PythonVersionHex>$([msbuild]::BitwiseOr(
206 $([msbuild]::Multiply($(MajorVersionNumber), 16777216)),
207 $([msbuild]::BitwiseOr(
208 $([msbuild]::Multiply($(MinorVersionNumber), 65536)),
209 $([msbuild]::BitwiseOr(
210 $([msbuild]::Multiply($(MicroVersionNumber), 256)),
211 $([msbuild]::BitwiseOr(
[all …]
/external/zstd/build/VS_scripts/
Dbuild.generic.cmd31 SET msbuild="%windir%\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe"
32 …community="%programfiles(x86)%\Microsoft Visual Studio\2017\Community\MSBuild\15.0\Bin\MSBuild.exe"
33 …sional="%programfiles(x86)%\Microsoft Visual Studio\2017\Professional\MSBuild\15.0\Bin\MSBuild.exe"
34 …terprise="%programfiles(x86)%\Microsoft Visual Studio\2017\Enterprise\MSBuild\15.0\Bin\MSBuild.exe"
35 IF %msbuild_version% == VS2013 SET msbuild="%programfiles(x86)%\MSBuild\12.0\Bin\MSBuild.exe"
36 IF %msbuild_version% == VS2015 SET msbuild="%programfiles(x86)%\MSBuild\14.0\Bin\MSBuild.exe"
37 IF %msbuild_version% == VS2017Community SET msbuild=%msbuild_vs2017community%
38 IF %msbuild_version% == VS2017Professional SET msbuild=%msbuild_vs2017professional%
39 IF %msbuild_version% == VS2017Enterprise SET msbuild=%msbuild_vs2017enterprise%
41 IF EXIST %msbuild_vs2017community% SET msbuild=%msbuild_vs2017community%
[all …]
/external/python/cpython2/PCbuild/
Dfind_msbuild.bat2 @rem Searches for MSBuild.exe. This is the only tool we need to initiate
6 @rem the MSBUILD variable), so we do not use setlocal or echo, and avoid
19 @if exist "%*" (set MSBUILD="%*") & (set _Py_MSBuild_Source=environment) & goto :found variable
23 @if exist "%~1" (set MSBUILD="%~1") & (set _Py_MSBuild_Source=environment) & goto :found variable
26 @set MSBUILD= variable
28 @rem If msbuild.exe is on the PATH, assume that the user wants that one.
29 @msbuild /version > nul 2>&1
30 @if NOT ERRORLEVEL 9009 set MSBUILD=msbuild & (set _Py_MSBuild_Source=PATH) & goto :found variable
32 @rem VS 2015 and earlier register MSBuild separately, so we can find it.
33 @rem Prefer MSBuild 14.0 over MSBuild 15.0, since the latter may not be able to find a VC14 install.
[all …]
Dpython.props2 <Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
17 Convincing MSVC/MSBuild to prefer our platform names is too difficult,
79 <PythonVersionHex>$([msbuild]::BitwiseOr(
80 $([msbuild]::Multiply($(MajorVersionNumber), 16777216)),
81 $([msbuild]::BitwiseOr(
82 $([msbuild]::Multiply($(MinorVersionNumber), 65536)),
83 $([msbuild]::BitwiseOr(
84 $([msbuild]::Multiply($(MicroVersionNumber), 256)),
85 $([msbuild]::BitwiseOr(
86 $([msbuild]::Multiply($(ReleaseLevelNumber), 16)),
[all …]
Dbuild.bat4 echo.%~nx0 [flags and arguments] [quoted MSBuild options]
10 echo.directly to MSBuild may be passed. If the argument contains an '=', the
12 echo.Alternatively you can put extra flags for MSBuild in a file named
13 echo.`msbuild.rsp` in the `PCbuild` directory, one flag per line. This file
14 echo.will be picked automatically by MSBuild. Flags put in this file does not
75 rem These use the actual property names used by MSBuild. We could just let
103 call "%dir%find_msbuild.bat" %MSBUILD%
104 if ERRORLEVEL 1 (call "%dir%env.bat" && set MSBUILD=msbuild) variable
124 %MSBUILD% "%dir%\pythoncore.vcxproj" /t:KillPython %verbose%^
132 rem Call on MSBuild to do the work, echo the command.
[all …]
/external/python/cpython3/.azure-pipelines/
Dtcltk-build.yml41 # This msbuild.rsp file will be used by the build to forcibly override these variables
43 del -Force -EA 0 msbuild.rsp
44 "/p:IntDir=$(IntDir)\" >> msbuild.rsp
45 "/p:ExternalsDir=$(ExternalsDir)\" >> msbuild.rsp
46 "/p:tclDir=$(ExternalsDir)\$(TclSourceTag)\" >> msbuild.rsp
47 "/p:tkDir=$(ExternalsDir)\$(TkSourceTag)\" >> msbuild.rsp
48 "/p:tixDir=$(ExternalsDir)\$(TixSourceTag)\" >> msbuild.rsp
49 displayName: 'Generate msbuild.rsp'
52 … & "$(msbuild)" PCbuild\tcl.vcxproj "@msbuild.rsp" /p:Platform=Win32 /p:tcltkDir="$(OutDir)\win32"
53 … & "$(msbuild)" PCbuild\tk.vcxproj "@msbuild.rsp" /p:Platform=Win32 /p:tcltkDir="$(OutDir)\win32"
[all …]
Dfind-tools.yml19 $msbuild = (& "${env:ProgramFiles(x86)}\Microsoft Visual Studio\Installer\vswhere.exe" `
23 -find MSBuild\Current\Bin\msbuild.exe)
24 Write-Host "Found MSBuild at $msbuild"
25 Write-Host "##vso[task.setVariable variable=msbuild]$msbuild"
26 displayName: 'Find MSBuild'
/external/llvm/tools/msbuild/
DCMakeLists.txt43 … "${CMAKE_CURRENT_BINARY_DIR}/${platform}/${prop_file_v100}" DESTINATION tools/msbuild/${platform})
44 … "${CMAKE_CURRENT_BINARY_DIR}/${platform}/${prop_file_v110}" DESTINATION tools/msbuild/${platform})
45 …{CMAKE_CURRENT_BINARY_DIR}/${platform}/${prop_file_v110_xp}" DESTINATION tools/msbuild/${platform})
46 … "${CMAKE_CURRENT_BINARY_DIR}/${platform}/${prop_file_v120}" DESTINATION tools/msbuild/${platform})
47 …{CMAKE_CURRENT_BINARY_DIR}/${platform}/${prop_file_v120_xp}" DESTINATION tools/msbuild/${platform})
48 … "${CMAKE_CURRENT_BINARY_DIR}/${platform}/${prop_file_v140}" DESTINATION tools/msbuild/${platform})
49 …{CMAKE_CURRENT_BINARY_DIR}/${platform}/${prop_file_v140_xp}" DESTINATION tools/msbuild/${platform})
51 …install(FILES "Microsoft.Cpp.Win32.LLVM-vs2010.targets" DESTINATION "tools/msbuild/${platform}" RE…
52 …install(FILES "Microsoft.Cpp.Win32.LLVM-vs2012.targets" DESTINATION "tools/msbuild/${platform}" RE…
53 …install(FILES "Microsoft.Cpp.Win32.LLVM-vs2012_xp.targets" DESTINATION "tools/msbuild/${platform}"…
[all …]
Dinstall.bat16 REM Search for the MSBuild toolsets directory.
18 SET D="%ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\Platforms\%PLATFORM%\PlatformToolsets"
20 SET D="%ProgramFiles(x86)%\MSBuild\Microsoft.Cpp\v4.0\Platforms\%PLATFORM%\PlatformToolsets"
24 SET D="%ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\V110\Platforms\%PLATFORM%\PlatformToolsets"
26 SET D="%ProgramFiles(x86)%\MSBuild\Microsoft.Cpp\v4.0\V110\Platforms\%PLATFORM%\PlatformToolsets"
30 SET D="%ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\V120\Platforms\%PLATFORM%\PlatformToolsets"
32 SET D="%ProgramFiles(x86)%\MSBuild\Microsoft.Cpp\v4.0\V120\Platforms\%PLATFORM%\PlatformToolsets"
36 SET D="%ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\V140\Platforms\%PLATFORM%\PlatformToolsets"
38 SET D="%ProgramFiles(x86)%\MSBuild\Microsoft.Cpp\v4.0\V140\Platforms\%PLATFORM%\PlatformToolsets"
47 echo Failed to find MSBuild toolsets directory.
Duninstall.bat15 SET D="%ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\Platforms\%PLATFORM%\PlatformToolsets"
19 SET D="%ProgramFiles(x86)%\MSBuild\Microsoft.Cpp\v4.0\Platforms\%PLATFORM%\PlatformToolsets"
24 SET D="%ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\V110\Platforms\%PLATFORM%\PlatformToolsets"
31 SET D="%ProgramFiles(x86)%\MSBuild\Microsoft.Cpp\v4.0\V110\Platforms\%PLATFORM%\PlatformToolsets"
39 SET D="%ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\V120\Platforms\%PLATFORM%\PlatformToolsets"
46 SET D="%ProgramFiles(x86)%\MSBuild\Microsoft.Cpp\v4.0\V120\Platforms\%PLATFORM%\PlatformToolsets"
54 SET D="%ProgramFiles%\MSBuild\Microsoft.Cpp\v4.0\V140\Platforms\%PLATFORM%\PlatformToolsets"
61 SET D="%ProgramFiles(x86)%\MSBuild\Microsoft.Cpp\v4.0\V140\Platforms\%PLATFORM%\PlatformToolsets"
/external/grpc-grpc/src/csharp/Grpc.Tools/
Dimplementation_notes.md1 # Grpc.Tools MSBuild integration overview
12 MSBuild properties and targets included from the Grpc.Tools NuGet package are in:
22 here: [MSBuild .props and .targets in a package](https://learn.microsoft.com/en-us/nuget/concepts/m…
48 These can be overridden by specifying MSBuild properties or environment variables to give the paths…
59 The custom targets hook into various places in a normal MSBuild build by specifying
61 [msbuild-targets](https://learn.microsoft.com/en-us/visualstudio/msbuild/msbuild-targets)
77 …in the file `Protobuf.MSBuild.dll` in the NuGet package. See [task writing](https://learn.microsof…
91 … generated and these are returned as a list of _items_ that can then be used in the MSBuild targets
150 See [How to: Build incrementally](https://learn.microsoft.com/en-us/visualstudio/msbuild/how-to-bui…
155 * Timestamps of MSBuild project files
[all …]
/external/python/cpython3/Tools/msi/
Duploadrelease.bat58 call "%PCBUILD%find_msbuild.bat" %MSBUILD%
59 if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2)
62 %MSBUILD% /v:m /nologo uploadrelease.proj /t:Upload /p:Platform=x86
64 %MSBUILD% /v:m /nologo uploadrelease.proj /t:Upload /p:Platform=x64 /p:IncludeDoc=false
68 %MSBUILD% /v:m /nologo uploadrelease.proj /t:Purge
76 %MSBUILD% /v:m /nologo uploadrelease.proj /t:ShowHashes /p:Platform=x86
78 %MSBUILD% /v:m /nologo uploadrelease.proj /t:ShowHashes /p:Platform=x64 /p:IncludeDoc=false
85 %MSBUILD% /v:m /nologo uploadrelease.proj /t:Test /p:Platform=%1
88 %MSBUILD% /v:m /nologo uploadrelease.proj /t:Purge
90 %MSBUILD% /v:m /nologo uploadrelease.proj /t:Test /p:Platform=%1
Dbuild.bat29 call "%PCBUILD%find_msbuild.bat" %MSBUILD%
30 if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2)
57 %MSBUILD% "%D%launcher\launcher.wixproj" /p:Platform=x86
72 %MSBUILD% /p:Platform=x86 %BUILD_CMD%
76 %MSBUILD% /p:Platform=x64 %BUILD_CMD%
80 %MSBUILD% /p:Platform=ARM64 %BUILD_CMD%
/external/python/cpython3/kokoro/
Dkokoro_build.cmd23 :: The Kokoro image has two copies of MSBuild installed. Prefer the one in
24 :: C:\VS\MSBuild over the one in
25 :: "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild"
27 if exist C:\VS\MSBuild\Current\Bin\amd64\MSBuild.exe (set "PATH=C:\VS\MSBuild\Current\Bin\amd64;%PA…
/external/python/cpython3/Tools/msi/launcher/
Dlauncher.wixproj2 …lsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
30 …<MSBuild Projects="$(PySourcePath)PCbuild\pylauncher.vcxproj" Properties="Platform=Win32" Targets=…
33 …<MSBuild Projects="$(PySourcePath)PCbuild\pywlauncher.vcxproj" Properties="Platform=Win32" Targets…
36 …<MSBuild Projects="$(PySourcePath)PCbuild\pyshellext.vcxproj" Properties="Platform=Win32" Targets=…
39 …<MSBuild Projects="$(PySourcePath)PCbuild\pyshellext.vcxproj" Properties="Platform=x64" Targets="$…
42 …<MSBuild Projects="$(PySourcePath)PCbuild\pyshellext.vcxproj" Properties="Platform=ARM64" Targets=…
/external/flatbuffers/tests/FlatBuffers.Test/
DNetTest.sh22 msbuild -property:Configuration=Release,OutputPath=$TEMP_BIN -verbosity:quiet $PROJ_FILE
27 msbuild -property:Configuration=Release,UnsafeByteBuffer=true,OutputPath=$TEMP_BIN -verbosity:quiet…
39 msbuild -property:Configuration=Release,OutputPath=$TEMP_BIN -verbosity:quiet $CORE_PROJ_FILE
44 msbuild -property:Configuration=Release,UnsafeByteBuffer=true,OutputPath=$TEMP_BIN -verbosity:quiet…
49 msbuild -property:Configuration=Release,EnableSpanT=true,OutputPath=$TEMP_BIN -verbosity:quiet $COR…
/external/python/cpython3/Tools/nuget/
Dbuild.bat29 call "%PCBUILD%find_msbuild.bat" %MSBUILD%
30 if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2)
39 …%MSBUILD% "%D%make_pkg.proj" /p:Configuration=Release /p:Platform=x86 %OUTPUT% %PACKAGES% %PYTHON_…
48 …%MSBUILD% "%D%make_pkg.proj" /p:Configuration=Release /p:Platform=x64 %OUTPUT% %PACKAGES% %PYTHON_…
57 …%MSBUILD% "%D%make_pkg.proj" /p:Configuration=Release /p:Platform=ARM %OUTPUT% %PACKAGES% %PYTHON_…
/external/grpc-grpc/src/csharp/Grpc.Tools.Tests/
DMsBuildAssemblyHelper.cs37 // msbuild assemblies are loaded (and the tests work). in TweakAssemblyPathIfOnMono()
44 … // Construct the location of MsBuild assemblies from the location of mscorlib assembly. in TweakAssemblyPathIfOnMono()
45 var msbuildToolPath = Path.Combine(mscorlibDir, "..", "msbuild", "Current", "bin"); in TweakAssemblyPathIfOnMono()
51 // so also try specifying the msbuild version explicitly in TweakAssemblyPathIfOnMono()
52 msbuildToolPath = Path.Combine(mscorlibDir, "..", "msbuild", "15.0", "bin"); in TweakAssemblyPathIfOnMono()
/external/python/cpython2/Tools/nuget/
Dbuild.bat24 call "%PCBUILD%find_msbuild.bat" %MSBUILD%
25 if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2)
42 %MSBUILD% "%D%make_pkg.proj" /p:Configuration=Release /p:Platform=x86 %OUTPUT% %PACKAGES%
51 %MSBUILD% "%D%make_pkg.proj" /p:Configuration=Release /p:Platform=x64 %OUTPUT% %PACKAGES%
/external/python/cpython3/.azure-pipelines/windows-release/
Dmsi-steps.yml93 echo ##vso[task.setvariable variable=MSBUILD]%MSBUILD%
102 %MSBUILD% Tools\msi\launcher\launcher.wixproj
109 %MSBUILD% Tools\msi\bundle\releaselocal.wixproj /t:Rebuild /p:RebuildAll=true
121 %MSBUILD% Tools\msi\bundle\releaselocal.wixproj /t:Rebuild /p:RebuildAll=true
133 %MSBUILD% Tools\msi\bundle\releaselocal.wixproj /t:Rebuild /p:RebuildAll=true

12345678910>>...47