Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/MSBuild/XMake.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1148,7 +1148,7 @@ internal static bool BuildProject(
InitializationException.Throw(ResourceUtilities.FormatResourceStringStripCodeAndKeyword("ProjectUpgradeNeededToVcxProj", projectFile), null);
}

bool success = false;
bool success = true;

ProjectCollection projectCollection = null;
bool onlyLogCriticalEvents = false;
Expand Down Expand Up @@ -1292,7 +1292,7 @@ internal static bool BuildProject(
}
else
{
success = PrintTargets(projectFile, toolsVersion, globalProperties, targetsWriter, projectCollection);
success &= PrintTargets(projectFile, toolsVersion, globalProperties, targetsWriter, projectCollection);
}
}

Expand Down