2020-03-30 19:17:01 -07:00
|
|
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
|
|
|
|
|
<Target Name="KillPowerLauncher" BeforeTargets="PreBuildEvent;BeforeClean">
|
|
|
|
|
<Message Text="Killing process 'PowerLauncher.exe'" Importance="normal" ContinueOnError="true" />
|
2020-04-08 11:19:28 -07:00
|
|
|
<Exec Command="taskkill /F /IM PowerLauncher.exe"
|
|
|
|
|
IgnoreExitCode="true"
|
|
|
|
|
IgnoreStandardErrorWarningFormat="true">
|
|
|
|
|
<Output TaskParameter="ExitCode" PropertyName="ErrorCode"/>
|
|
|
|
|
</Exec>
|
|
|
|
|
<Error Text="Cannot kill PowerLauncher.exe process." Condition="$(ErrorCode) == 1"/>
|
|
|
|
|
<Message Text="Process PowerLauncher.exe does not exist." Condition="$(ErrorCode) == 128"/>
|
2020-03-30 19:17:01 -07:00
|
|
|
</Target>
|
|
|
|
|
|
|
|
|
|
</Project>
|