Visual Studio 2010: How to enforce build order of projects in a solution?

前端 未结 4 1240
没有蜡笔的小新
没有蜡笔的小新 2020-11-30 02:47

I had no problem with this in Visual Studio 2008 but it seems that VS 2010 is having an issue, and I\'m betting it\'s probably me.

I have a solution with an ASP.NET

相关标签:
4条回答
  • 2020-11-30 03:18

    I'll expound upon my comment a bit here, for those having a similar issue.

    Open up the configuration manager by right clicking on the solution and choosing Configuration Manager, then make sure build is checked for the appropriate project (for your current configuration) in the right-hand column here:

    Configuration Manager

    0 讨论(0)
  • 2020-11-30 03:28

    To correct the issue happening in my VS2012, I did the following:

    Right click Project Properties --> Common Properties --> Framework and References

    Now you will find some projects shown on the Dependence Tab are missing in the "References" list.

    Click "Add New Reference" to add the missing the projects.

    0 讨论(0)
  • 2020-11-30 03:38

    Nick Craver mentioned checking the Configuration Manager to ensure you have the project selected to build for a given configuration.

    However, to set the build order for multiple projects in a solution right click the solution and choose "Project Build Order..." from the context menu.

    0 讨论(0)
  • 2020-11-30 03:38

    Maybe instead of setting order manually you could use Project Dependencies which allows you to specify build order indirectly.

    1. In Solution Explorer, select a project.
    2. On the Project menu, choose Project Dependencies. The Project Dependencies dialog box opens. The Project Dependencies option is only available in a solution with more than one project.
    3. On the Dependencies tab, select a project from the Project drop-down menu.
    4. In the Depends on field, select the check box of any other project that must build before this project does.
    0 讨论(0)
提交回复
热议问题