© 2026 Hedgehog Software, LLC
<Target Name="NodeJS Compile" BeforeTargets="BeforeCompile"> <Exec Command="npm install" WorkingDirectory="Http\Frontend"/> <Exec Command="npm run build" WorkingDirectory="Http\Frontend"/> </Target>
<Content Include="Http\Frontend\build\**">
<Target Name="BeforeBuild" AfterTargets="Build"> <ItemGroup> <Content Include="Http\Frontend\build\**"> <CopyToOutputDirectory>Always</CopyToOutputDirectory> </Content> </ItemGroup> </Target>