Replies: 2 comments
-
https://learn.microsoft.com/en-us/visualstudio/msbuild/target-build-order?view=vs-2022. Seems msbuild targets can only be build in order. I think you need to build your DebugRunAssetsDevServer target seperately. |
Beta Was this translation helpful? Give feedback.
-
You can start a long-running process using shell operations ( |
Beta Was this translation helpful? Give feedback.
-
I want to run a Node Script command in background before my debugging process.
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.Beta Was this translation helpful? Give feedback.
All reactions