.NET project file analyzers community

Proj4001: Invalid INI Header

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

Section headers start with a [ and end with a ].

Non-compliant

[Header1

[Header2]]

[[Header3]

[]

Compliant

[Header1]

[Header2]

[Header3]

[Header4]