From: Ankit Jain Date: Wed, 6 Apr 2016 18:11:17 +0000 (-0400) Subject: [xbuild] Fix #40094, part 1/2: SolutionParser: Emit `AbsolutePath="..."` X-Git-Url: http://wien.tomnetworks.com/gitweb/?p=mono.git;a=commitdiff_plain;h=f225bc31108a3c7562ee59a6274e274628013950 [xbuild] Fix #40094, part 1/2: SolutionParser: Emit `AbsolutePath="..."` .. attribute for CurrentSolutionConfigurationContents . Release|AnyCPU ... Related to fix for bxc #40094 --- diff --git a/mcs/tools/xbuild/SolutionParser.cs b/mcs/tools/xbuild/SolutionParser.cs index bf44c515970..44ac70d2f96 100644 --- a/mcs/tools/xbuild/SolutionParser.cs +++ b/mcs/tools/xbuild/SolutionParser.cs @@ -510,8 +510,8 @@ namespace Mono.XBuild.CommandLine { if (solutionTarget.Configuration == targetInfo.Key.Configuration && solutionTarget.Platform == targetInfo.Key.Platform) { solutionConfigurationContents.AppendFormat ( - "{1}|{2}", - guid.ToString ("B").ToUpper (), targetInfo.Value.Configuration, targetInfo.Value.Platform); + "{2}|{3}", + guid.ToString ("B").ToUpper (), projectInfo.FileName, targetInfo.Value.Configuration, targetInfo.Value.Platform); } } }