/aosp_15_r20/external/python/cpython3/PCbuild/ |
D | find_msbuild.bat | 2 @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 …]
|
D | build.bat | 4 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 …]
|
D | prepare_tcltk.bat | 41 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 …]
|
D | python.props | 2 <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 …]
|
D | pcbuild.proj | 2 …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)"
|
D | prepare_ssl.bat | 39 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
|
/aosp_15_r20/external/zstd/build/VS_scripts/ |
H A D | build.generic.cmd | 31 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 …]
|
/aosp_15_r20/external/python/cpython2/PCbuild/ |
D | find_msbuild.bat | 2 @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 …]
|
D | python.props | 2 <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 …]
|
D | build.bat | 4 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 …]
|
/aosp_15_r20/external/python/cpython3/.azure-pipelines/ |
D | tcltk-build.yml | 41 # 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 …]
|
D | find-tools.yml | 19 $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'
|
/aosp_15_r20/external/llvm/tools/msbuild/ |
H A D | CMakeLists.txt | 43 … "${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 …]
|
H A D | install.bat | 16 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.
|
H A D | uninstall.bat | 15 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"
|
/aosp_15_r20/external/grpc-grpc/src/csharp/Grpc.Tools/ |
H A D | implementation_notes.md | 1 # 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 …]
|
/aosp_15_r20/external/python/cpython3/Tools/msi/ |
D | uploadrelease.bat | 58 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
|
D | build.bat | 29 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%
|
D | buildrelease.bat | 80 call "%PCBUILD%find_msbuild.bat" %MSBUILD% 81 if ERRORLEVEL 1 (echo Cannot locate MSBuild.exe on PATH or as MSBUILD variable & exit /b 2) 183 %MSBUILD% "%D%launcher\launcher.wixproj" /p:Platform=x86 %CERTOPTS% /p:ReleaseUri=%RELEASE_URI% 186 %MSBUILD% "%D%launcher\launcher.wixproj" /p:Platform=x86 %CERTOPTS% /p:ReleaseUri=%RELEASE_URI% 192 %MSBUILD% "%D%bundle\releaselocal.wixproj" /t:Rebuild %BUILDOPTS% %CERTOPTS% /p:RebuildAll=true 200 %MSBUILD% "%D%make_zip.proj" /t:Build %BUILDOPTS% %CERTOPTS% /p:OutputPath="%BUILD%en-us" 209 …%MSBUILD% "%D%..\nuget\make_pkg.proj" /t:Build /p:Configuration=Release /p:Platform=%1 /p:OutputPa…
|
/aosp_15_r20/external/zstd/.github/workflows/ |
H A D | dev-short-tests.yml | 273 - name: Add MSBuild to PATH 274 uses: microsoft/setup-msbuild@6fb02220983dee41ce7ae257b6f4d8f9bf5ed4ce # tag=v2.0.0 285 msbuild-visual-studio: 301 - name: Add MSBuild to PATH 302 uses: microsoft/setup-msbuild@6fb02220983dee41ce7ae257b6f4d8f9bf5ed4ce # tag=v2.0.0 305 # See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference 308 …msbuild "build\VS2010\zstd.sln" /m /verbosity:minimal /property:PlatformToolset=${{matrix.toolset}} 312 # See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference 315 …msbuild "build\VS2010\zstd.sln" /m /verbosity:minimal /property:PlatformToolset=${{matrix.toolset}} 494 - name: Add MSBuild to PATH [all …]
|
/aosp_15_r20/external/grpc-grpc/src/csharp/ |
H A D | BUILD-INTEGRATION.md | 39 You may still use the MSBuild integration provided by `Grpc.Tools` for other architectures provided… 90 * Sharing `.proto` files between projects with MSBuild links. 93 ### Sharing `.proto` with MSBuild links 96 using MSBuild's [`Link` or `LinkBase` settings](https://learn.microsoft.com/visualstudio/msbuild/co… 174 project, will be set to the value of the standard MSBuild property 208 be separated by semi-colons (;). This is the syntax that MsBuild uses for lists. 280 ## MSBuild Properties 282 You can set some Properties in your project file or on the MSBuild command line. The 459 This warning can be suppressed by setting the MSBuild property: 474 …nableDefaultProtobufItems` has be set to `true` in the project file or on the MSBuild command line. [all …]
|
/aosp_15_r20/external/python/cpython3/kokoro/ |
D | kokoro_build.cmd | 23 :: 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…
|
/aosp_15_r20/external/python/cpython3/Tools/msi/launcher/ |
D | launcher.wixproj | 2 …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=…
|
/aosp_15_r20/external/python/cpython3/Tools/nuget/ |
D | build.bat | 29 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_…
|
/aosp_15_r20/external/flatbuffers/.github/workflows/ |
H A D | build.yml | 75 - name: Add msbuild to PATH 76 uses: microsoft/setup-msbuild@v1.1 80 run: msbuild.exe FlatBuffers.sln /p:Configuration=Release /p:Platform=x64 110 - name: Add msbuild to PATH 111 uses: microsoft/setup-msbuild@v1.1 115 …run: msbuild.exe FlatBuffers.sln /p:Configuration=Release /p:Platform=x64 /p:VisualStudioVersion=1… 124 - name: Add msbuild to PATH 125 uses: microsoft/setup-msbuild@v1.1 129 …run: msbuild.exe FlatBuffers.sln /p:Configuration=Release /p:Platform=x64 /p:VisualStudioVersion=1…
|