Skip to content

Commit

Permalink
Removed redundant target
Browse files Browse the repository at this point in the history
  • Loading branch information
lilla28 committed Aug 22, 2023
1 parent 0ab99a1 commit a2ca1bb
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions src/shell/dotnet/Shell/Shell.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -57,21 +57,16 @@
<Target Name="InstallMonoRepoDependencies"
Condition="!Exists('$(ComposeUIRepositoryRoot)\node_modules')">
<Message Importance="high" Text="Installing node_modules..." />
<Exec Command="cd $(ComposeUIRepositoryRoot) &amp; npm install" />
<Exec Command="cd $(ComposeUIRepositoryRoot) &amp;&amp; npm install" />
<Message Importance="normal" Text="Finished command: npm install." />
</Target>

<Target Name="RunFdc3LernaBuild">
<Message Importance="high" Text="Running npx lerna run build for composeui-fdc3..." />
<Exec Command="cd $(ComposeUIRepositoryRoot) &amp; npx lerna run build --scope @morgan-stanley/composeui-fdc3" />
<Message Importance="normal" Text="Finished building the fdc3 bundle." />
</Target>

<Target
Name="BuildComposeUIFdc3Bundle"
BeforeTargets="PrebuildEvent">
<CallTarget Targets="InstallMonoRepoDependencies" />
<CallTarget Targets="RunFdc3LernaBuild" />
<Exec Command="cd $(ComposeUIRepositoryRoot) &amp;&amp; npx lerna run build --scope @morgan-stanley/composeui-fdc3" />
<Message Importance="normal" Text="Finished building the fdc3 bundle." />
</Target>

</Project>

0 comments on commit a2ca1bb

Please sign in to comment.