diff options
| author | Steve Dower <steve.dower@microsoft.com> | 2015-10-31 12:17:11 -0700 |
|---|---|---|
| committer | Steve Dower <steve.dower@microsoft.com> | 2015-10-31 12:17:11 -0700 |
| commit | 940f6a8f11b5ef0f9fa85b0be4b95608efebb2e8 (patch) | |
| tree | a75f4cc54fd92dac49b0e9a127d956f7f4e41a3b /PCbuild/pyproject.props | |
| parent | f97edf1aa630d507a69885e5a3e9ff8edbe3ea02 (diff) | |
| download | cpython-git-940f6a8f11b5ef0f9fa85b0be4b95608efebb2e8.tar.gz | |
Improves handling of test markers for building Python without intefering with actual installs.
Diffstat (limited to 'PCbuild/pyproject.props')
| -rw-r--r-- | PCbuild/pyproject.props | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PCbuild/pyproject.props b/PCbuild/pyproject.props index a2c44f33cb..25cdfcc926 100644 --- a/PCbuild/pyproject.props +++ b/PCbuild/pyproject.props @@ -128,8 +128,8 @@ foreach (System.Diagnostics.Process p in System.Diagnostics.Process.GetProcesses </UsingTask> <Target Name="KillPython" BeforeTargets="PrepareForBuild" Condition="'$(KillPython)' == 'true'"> - <Message Text="Killing any running python.exe instances..." Importance="high" /> - <KillPython FileName="$(OutDir)python$(PyDebugExt).exe" /> + <Message Text="Killing any running python$(PyDebugExt)$(PyTestExt).exe instances..." Importance="high" /> + <KillPython FileName="$(OutDir)python$(PyDebugExt)$(PyTestExt).exe" /> </Target> <!-- |
