12 строки
386 B
XML
12 строки
386 B
XML
<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>
|