From f225bc31108a3c7562ee59a6274e274628013950 Mon Sep 17 00:00:00 2001 From: Ankit Jain Date: Wed, 6 Apr 2016 14:11:17 -0400 Subject: [PATCH] [xbuild] Fix #40094, part 1/2: SolutionParser: Emit `AbsolutePath="..."` .. attribute for CurrentSolutionConfigurationContents . Release|AnyCPU ... Related to fix for bxc #40094 --- mcs/tools/xbuild/SolutionParser.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); } } } -- 2.25.1