mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 18:57:19 +02:00
14 lines
690 B
Plaintext
14 lines
690 B
Plaintext
|
|
<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" />
|
||
|
|
<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"/>
|
||
|
|
</Target>
|
||
|
|
|
||
|
|
</Project>
|