diff options
author | Steve Dower <steve.dower@microsoft.com> | 2014-12-12 13:45:25 -0800 |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2014-12-12 13:45:25 -0800 |
commit | f4f1080e2e6f00b31d423185d6312bcd74261900 (patch) | |
tree | 40ef72f591d358ab01a92fa2bbefcb7174f788bd | |
parent | 10e65856a38f888108f1063970b2fa3077af01f8 (diff) | |
download | cpython-git-f4f1080e2e6f00b31d423185d6312bcd74261900.tar.gz |
Prevent warning MSB4057: The target "InitializeBuildStatus" does not exist in the project.
-rw-r--r-- | PCbuild/pyproject.props | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PCbuild/pyproject.props b/PCbuild/pyproject.props index 1130503c3d..85aebebe2f 100644 --- a/PCbuild/pyproject.props +++ b/PCbuild/pyproject.props @@ -119,7 +119,7 @@ foreach (System.Diagnostics.Process p in System.Diagnostics.Process.GetProcesses </Task> </UsingTask> - <Target Name="KillPython" BeforeTargets="InitializeBuildStatus" Condition="'$(KillPython)' == 'true'"> + <Target Name="KillPython" BeforeTargets="PrepareForBuild" Condition="'$(KillPython)' == 'true'"> <Message Text="Killing any running python.exe instances..." Importance="high" /> <KillPython FileName="$(OutDir)python$(PyDebugExt).exe" /> </Target> |