Lines Matching refs:rem
1 @rem
2 @rem Searches for python.exe and may download a private copy from nuget.
3 @rem
4 @rem This file is supposed to modify the state of the caller (specifically
5 @rem the MSBUILD variable), so we do not use setlocal or echo, and avoid
6 @rem changing any other persistent state.
7 @rem
9 @rem No arguments provided means do full search
12 @rem One argument may be the full path. Use a goto so we don't try to
13 @rem parse the next if statement - incorrect quoting in the multi-arg
14 @rem case can cause us to break immediately.
17 @rem Entire command line may represent the full path if quoting failed.
27 @rem If there is an active virtual env, use that one
33 @rem If we have Python in externals, use that one
36 @rem If HOST_PYTHON is recent enough, use that
39 @rem If py.exe finds a recent enough version, use that one
51 @rem NB: Must use single quotes around NUGET here, NOT double!
52 @rem Otherwise, a space in the path would break things
53 @rem If it fails, retry with any available copy of Python
61 @rem Quote it here; it's not quoted later because "py -x.y" wouldn't work