Problem :
Try to set the following propery value in Project Properties
-Wa,-adhlns=$(<:.c=.lst)
Will throw error, The MPF code recognizes the above value as a valid MSBuild Propery since it matches the pattern $(...), but fails in evaulation. So these kind of strings must be URI escaped before saving into the project file. This holds true for any project property value set.
How to do this? Is this a known issue?