Hi @user 5879 ,
There doesn't have the normal or approximation build time, the build time depends on the project size, dependencies, installed packages, the OS environment, VS Code version, the VS Code performance and so on.
To reducre the builde time, you could base on the depends, and try to use the following tips:
- As mentioned in your comment, you could use the
dotnet run --no-restore
command to disable implicit restore and reduce the build time. - Take a look at Visual Studio Coe Performance Issues for more suggestions on how to improve performance, such as disable the installed extensions.
- Try to use WebPack to bundle the files.
If the answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.
Best Regards,
Dillion
I have used dot net run --no-restore and the time has reduced by 10 seconds