mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-04 03:49:07 +08:00
12 lines
410 B
Plaintext
12 lines
410 B
Plaintext
|
<Project>
|
||
|
<PropertyGroup>
|
||
|
<RestoreGitSubmodulesImported>true</RestoreGitSubmodulesImported>
|
||
|
</PropertyGroup>
|
||
|
<Target Name="RestoreGitSubmodules" BeforeTargets="PrepareForBuild">
|
||
|
<Exec IgnoreExitCode="true"
|
||
|
EchoOff="true"
|
||
|
StandardOutputImportance="low"
|
||
|
StandardErrorImportance="low"
|
||
|
Command="git submodule update --init" />
|
||
|
</Target>
|
||
|
</Project>
|