Skip to content

Commit 0844476

Browse files
committed
Return the plist value instead of the type
1 parent cd400a2 commit 0844476

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

msbuild/Xamarin.MacDev.Tasks/Tasks/GetPropertyListValue.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public override bool Execute ()
8686
return false;
8787
}
8888

89-
Value = value.ToString ();
89+
Value = value is IPValueObject pvalue ? pvalue.Value.ToString () : value.ToString ();
9090

9191
return !Log.HasLoggedErrors;
9292
}

0 commit comments

Comments
 (0)