12 lines
555 B
XML
12 lines
555 B
XML
<Project>
|
|
<Target Name="RestoreNpm" AfterTargets="Restore" Condition="'$(PreflightRestore)' != 'True'">
|
|
<Message Text="Restoring NPM modules" Importance="high" />
|
|
<Exec Command="npm install --no-optional" WorkingDirectory="$(RepositoryRoot)client-ts" />
|
|
</Target>
|
|
|
|
<Target Name="RunTSClientNodeTests" AfterTargets="Test">
|
|
<Message Text="Running TypeScript client Node tests" Importance="high" />
|
|
<Exec Command="npm test" WorkingDirectory="$(RepositoryRoot)client-ts" IgnoreStandardErrorWarningFormat="true" />
|
|
</Target>
|
|
</Project>
|