aboutsummaryrefslogtreecommitdiffstats
path: root/QtVsTools.Core/QMakeQuery.cs
diff options
context:
space:
mode:
Diffstat (limited to 'QtVsTools.Core/QMakeQuery.cs')
-rw-r--r--QtVsTools.Core/QMakeQuery.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/QtVsTools.Core/QMakeQuery.cs b/QtVsTools.Core/QMakeQuery.cs
index 2992f39d..ce112a47 100644
--- a/QtVsTools.Core/QMakeQuery.cs
+++ b/QtVsTools.Core/QMakeQuery.cs
@@ -63,7 +63,7 @@ namespace QtVsTools.Core
.Parse(stdOutput.ToString())
.GetValues<KeyValuePair<string, string>>("PROP")
.GroupBy(x => x.Key)
- .Select(x => new { x.Key, Value = x.Last().Value })
+ .Select(x => new { x.Key, x.Last().Value })
.ToDictionary(property => property.Key, property => property.Value);
} else {
return new Dictionary<string, string>();