mhutch / MonoDevelop.MSBuildEditor

Improved MSBuild editing support
Other
215 stars 26 forks source link

SatelliteResourceLanguages does not support comma delimiters #182

Closed martincostello closed 5 months ago

martincostello commented 5 months ago

The SatelliteResourceLanguages property raises errors if commas are used to delimit the values. For example:

<SatelliteResourceLanguages>en,en-GB,en-US,qps-Ploc</SatelliteResourceLanguages>

MSBuild processes the values and behaves correctly if commas are used, so a warning should not be raised if they are used instead of semi-colons.

mhutch commented 5 months ago

This one is documented as semicolons and there is no standardized splitting behavior for properties, as that's up to the tasks that use the properties. I'll update the schema to match actual behavior.