c# : Utility to find circular references / compile in correct order?

后端 未结 5 1588
旧巷少年郎
旧巷少年郎 2020-12-11 18:37

doers anyone know of a good utility or program to interrogate a solution or a directory for all projects and tell you where circular references are and possible compile in o

5条回答
  •  攒了一身酷
    2020-12-11 19:31

    If you use project references between the projects in your solution the correct build order will be determined automatically by Visual Studio (or MSBuild). This breaks of course if you use assembly references.. Also Visual Studio will stop you from adding circular project references.

提交回复
热议问题