Is there any best practices for Visual Studio Project/Solution Structure?

后端 未结 6 1160
臣服心动
臣服心动 2021-01-31 16:20

I\'ve seen a lot of different takes on this subject so I figured if there\'s a preferred way on this.

Is there any best practices on how to setup Visual Studio Projects

6条回答
  •  野性不改
    2021-01-31 16:35

    You can have multipe solutions, and each one can reference the projects that it cares about. Extending your example, your shared business logic library may have a corresponding unit test library. These two projects can be contained in one solution. At the same time, you may have another solution that contains the three projects that you mention, but in this case the unit test library isn't included.

提交回复
热议问题