The solution does not start / build / rebuild in Visual Studio

When trying to run Build / Rebuild in Visual Studio, nothing happens to the solution.

I can start the build from the command line using MSbuild.exe and this will give me the result I would expect (Build Successed). But when you try to run it from visual studio, nothing happens. Also there is no debug or build output.

A project is an MVC project with some links to other projects.

I can create a new MVC project and it works great!

Any idea what might cause this behavior?

Using Visual Studio 2015.

I tried the following:

  • Restart VS
  • Comparing a solution file with a new solution file
  • Starting assembly manually from MSBuild (OK)
  • Debug / Release Configuration
  • Building projects individually
  • Updated NuGet
  • ( )

, git, , , Visual Studio 2013 - , - .

+5
4

, , - git (bootstrap) , , - , , . , .

0

, .

, : > → > " " > " "

, " "

+1

:

  • → → → -
  • UNCHECK "$ (VSINSTALLDIR)\Web\External".
  • UNCHECKING "$ (VSINSTALLDIR)\Web\External" Visual Studio .
0

Check if any NuGet packages are missing, this was a problem with me. Go to

Tools -> NuGet Package Manager -> Package Manager Console

If any packages are missing, Visual Studio will show you a message and a Restore button to solve the problem. After that, the application should collect.

0
source

All Articles