What is Content Build Action in Visual Studio?

后端 未结 4 902
小鲜肉
小鲜肉 2020-12-05 09:12

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

4条回答
  •  [愿得一人]
    2020-12-05 09:52

    Updated Visual Studio documentation has more meaningful description:

    Content - A file marked as Content can be retrieved as a stream by calling Application.GetContentStream. For ASP.NET projects, these files are included as part of the site when it's deployed.


    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

    [assembly: System.Windows.Resources.AssemblyAssociatedContentFileAttribute("filename")]
    

    to WpfApplication1_Content.g.cs. Read about the AssemblyAssociatedContentFileAttribute.

    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:

    Also note that Content will be included when using one-click deploy, but None won't even if "copy if newer" is selected.

    Possibly this works even for console and WinForms applications (I haven't tried).

提交回复
热议问题