Hello @MSCollege3000 ,
You can try following methods to monitor the progress and check the cause.
- While building, maybe you can enable following option to check the detailed output information. Tools => Options => Projects and Solutions => Build And Run => MSBuild project build output verbosity => change to Detailed or Diagnostic. While you are building your project, check the Output window of Visual Studio.
- Directly click the "Ready" icon and see if there’s any running task in the background.
- Run
devenv.exe /log
command, reproduce the issue, close VS and check the log file(ActivityLog.xml file) in%AppData%\Microsoft\VisualStudio\17.0_<InstanceID>
folder. - Download and use Windows Process Monitor tool to check Visual Studio(devenv.exe) operations.
- Consider some additional causes, such as extensions, NuGet packages restoring, waiting for accessing to some resources(files), and specific project/solution settings…
Best Regards,
Tianyu
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
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.