diff options
author | Steve Dower <steve.dower@microsoft.com> | 2014-12-12 21:45:25 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2014-12-12 21:45:25 (GMT) |
commit | f4f1080e2e6f00b31d423185d6312bcd74261900 (patch) | |
tree | 40ef72f591d358ab01a92fa2bbefcb7174f788bd /PCbuild | |
parent | 10e65856a38f888108f1063970b2fa3077af01f8 (diff) | |
download | cpython-f4f1080e2e6f00b31d423185d6312bcd74261900.zip cpython-f4f1080e2e6f00b31d423185d6312bcd74261900.tar.gz cpython-f4f1080e2e6f00b31d423185d6312bcd74261900.tar.bz2 |
Prevent warning MSB4057: The target "InitializeBuildStatus" does not exist in the project.
Diffstat (limited to 'PCbuild')
-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 1130503..85aebeb 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> |