-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Closed
Labels
needs-triageHave yet to determine what bucket this goes in.Have yet to determine what bucket this goes in.
Description
I want to run a Node Script command in background before my debugging process.
<Target Name="DebugRunAssetsDevServer" BeforeTargets="Run" Condition=" '$(Configuration)' == 'Debug' ">
<!-- Run the assets dev server -->
<Message Importance="normal" Text="Starting Assets Dev Server" />
<Exec Command="npm run dev" ContinueOnError="true" />
</Target>The above code doesn't work when I start the project in debug mode. It works if I change to BeforeTargets="Build" but hangs waiting for the command to finish. But that command shouldn't finish because it starts my Vite Dev Server which compiles my scripts while I'm editing them.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
needs-triageHave yet to determine what bucket this goes in.Have yet to determine what bucket this goes in.