12 строки
386 B
Plaintext
12 строки
386 B
Plaintext
|
<Project>
|
||
|
<PropertyGroup>
|
||
|
<RestoreDependsOn>$(RestoreDependsOn);RestoreNpm</RestoreDependsOn>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<Target Name="RestoreNpm" Condition="'$(PreflightRestore)' != 'True'">
|
||
|
<Message Text="Restoring NPM modules" Importance="high" />
|
||
|
<Exec Command="npm install --no-optional" WorkingDirectory="$(RepositoryRoot)test\FunctionalTests" />
|
||
|
</Target>
|
||
|
|
||
|
</Project>
|