What does the Content Build Action in Visual Studio do? It does not look like it's doing anything.
The File Properties article on MSDN (does not exist anymore) says:
Content - The file is not compiled, but is included in the Content output group. For example, this setting is the default value for an .htm or other kind of Web file.
But I have no idea what the "Content output group" means.
Is this something about deployment? Meaning, the action has no actual effect, when building, but only later when deploying?


Updated Visual Studio documentation has more meaningful description:
Also after some testing and with a hint from What are the various "Build action" settings in Visual Studio project properties and what do they do?, I've found that the Content build action has this effect in WPF projects (possibly ASP too).
It adds
to
WpfApplication1_Content.g.cs. Read about theAssemblyAssociatedContentFileAttribute.In console or WinForms applications, it does not do anything (neither in source code nor output binary).
Though in the comment, to previously mentioned question, there's a note about effect on deployment:
Possibly this works even for console and WinForms applications (I haven't tried).