How is
<None Include="C:\foo.bar" />
different from
<Content Include="C:\foo.bar" />
?
|
The MSDN article on the build action property explains the differences.
|
|||||
|
|
|
One difference is how they get published; "None" items don't get included in a publish, "Content" items do; for example, on the "Application Files" dialog on the Publish tab. |
|||
|
|
|
I am not 100% sure (I read the MSDN description of Build Action property) but just copying that answer from MSDN to StackOverflow does not answer the question completely for me. The difference of None and Content only has an effect on Web projects. For a command line project, WinForm project or UnitTest project (in my case) etc. None and Content have no different behavior. MSDN: "project output group" or "Content output group" only terms used in a Web project, right? |
|||
|
|
|
I have a project that contains no compilable items (it stores html and javascript for jasmine unit tests). One day my solution (that contained said project) stopped compiling saying "The target "Build" does not exist in the project". I added an import to bring in the compiler, which worked fine on my machine but failed using msbuild on the build server.
I then changed a line from
to
and it worked on the build server as well. |
|||
|
|
|
You need None in a template project file to include files you define in the .vstemplate otherwise they are lost in the creation & translation process. They get left behind in the temp folder it uses to build everything and then deleted shortly after. |
||||
|
|
Contents get changed toNones. I think it happened when I renamed files from .ascx to .cshtml when converting to Razor. Changing them back manually fixed some deployment issues I had. Glad I found this. – Chris Feb 24 '11 at 18:13