Reasons for C# projects to rebuild in Visual Studio

前端 未结 5 923
野趣味
野趣味 2021-02-09 05:17

I have a large solution, of some 320 projects, where even small changes to a single web form result in long build times to test/debug a small change. I suspect post-build file

5条回答
  •  甜味超标
    2021-02-09 05:54

    You can try to build your solution using msbuild and /v:d (for diagnostics logging).

    There may be hints in the log for why a project is not up to date.

提交回复
热议问题