Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How is

<None Include="C:\foo.bar" />

different from

<Content Include="C:\foo.bar" />

?

share|improve this question
2  
Out of curiousity, why are you digging around in your .csproj files? – Matthew Scharley Jun 29 '09 at 22:23
4  
Monoxide, I think you answered your own question: out of curiosity. – Rob Kennedy Jun 29 '09 at 23:31
1  
I had a few Contents get changed to Nones. 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
1  
@MatthewScharley I really wish you could downvote comments, because I would downvote yours. Why shouldn't he be editing his .csproj files?? – Jez Oct 3 '12 at 9:06
   
@Jez: I never said he shouldn't, I was simply asking why he was. Heck, I've done it myself. It's not something that most people would do though. – Matthew Scharley Oct 3 '12 at 10:43

5 Answers

up vote 19 down vote accepted

The MSDN article on the build action property explains the differences.

None - The file is not included in the project output group and is not compiled in the build process. An example is a text file that contains documentation, such as a Readme file.

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.

share|improve this answer
   
Thanks, I had trouble locating this reference. – Emmett Jun 29 '09 at 22:26

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.

share|improve this answer

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?

share|improve this answer

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.

<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

I then changed a line from

<None Include="SpecRunner.html" />

to

<Content Include="SpecRunner.html" />

and it worked on the build server as well.

share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.