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

C#asp.netVisual Studio-2010Build ProcessC# 4.0

C# Problem Overview


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 Web Site Project and a few C# projects (BLL, DAL, Tests in NUnit). I have configured the build process for the test project to automatically run NUnit to run the tests. I would like to ensure that the BLL and DAL projects build before the test project so that the tests will run against the latest compiled version (yes, I know I could do this all in one project, but I'm choosing not to -- please bear with me :) )

So, I set the dependencies of the Test project to include the BLL, DAL, and Web Application projects, and the build order shows BLL, DAL, Web Application, and then Tests. However, I noticed that the BLL doesn't actually build when I build the Test project.

Any idea what this could be or any option I might be missing to force the other projects to build when I build the Test project?

Thanks in advance for any help!

C# Solutions


Solution 1 - C#

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.

Solution 2 - C#

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

Solution 3 - C#

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.

Solution 4 - C#

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.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSeanKilleenView Question on Stackoverflow
Solution 1 - C#M. Travis VolkerView Answer on Stackoverflow
Solution 2 - C#Nick CraverView Answer on Stackoverflow
Solution 3 - C#VyktorView Answer on Stackoverflow
Solution 4 - C#JohnView Answer on Stackoverflow