.NET project file analyzers community

Proj4002: Invalid INI key-value pair

An INI file is a plain text file with a structure and syntax comprising key–value pairs organized in sections.

Key-value pairs can either be separated by = or :.

Non-compliant

Key1 =

Key2 == value

= value

Key4 value

Compliant

Key1 = value

Key2 = value

Key3 = value

Key4 = value