Visual Studio project not created when creating solution from msbuild

I create a solution for the entire Visual Studio using msbuild, it works fine, but there is one project that does not build when building the whole solution

This is my msbuild script

    <MSBuild Condition="'$(debug)' ==''"
             Projects="$(MySolution)"
             Targets="build"
             Properties="Configuration=Release">
      <Output TaskParameter="TargetOutputs"       ItemName="BuildOutput" />
    </MSBuild>

Something I need to check out this particular project in my Visual Studio solution?

+5
source share
2 answers

, , , , . VS Solution Explorer node , (Debug, Release...), :

enter image description here

+15

, , , .

sln , MSBuild Project2:

Project("{Guid1}") = "Project1", "Project1\Project1.csproj", "{Guid2}"
Project("{Guid1}") = "Project2", "Project2\Project2.csproj", "{Guid3}"
EndProject

EndProject git rebase EndProject. , :

Project("{Guid1}") = "Project1", "Project1\Project1.csproj", "{Guid2}"
EndProject
Project("{Guid1}") = "Project2", "Project2\Project2.csproj", "{Guid3}"
EndProject

( Visual Studio 2015)

+1

All Articles