How to exclude files from Visual Studio compile? - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T23:02:40Zhttp://stackoverflow.com/feeds/question/219381http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/219381/how-to-exclude-files-from-visual-studio-compile4How to exclude files from Visual Studio compile?Larsenal2008-10-20T18:24:33Z2008-10-20T19:11:50Z
<p>I'm in the process of refactoring a project. I've got an entire subfolder which is known to be broken. Is there any declarative way to exclude that folder from the compile temporarily while I test the refactoring thus far?</p>
<p>I realize I could delete the folder, but I'd like to do this through configuration if possible.</p>
http://stackoverflow.com/questions/219381/how-to-exclude-files-from-visual-studio-compile/219386#2193861Answer by leppie for How to exclude files from Visual Studio compile?leppie2008-10-20T18:26:43Z2008-10-20T18:26:43Z<p>Right click all the files, and select Properties. Now set Action to None. Revert to Compile when you fixed the code :)</p>
http://stackoverflow.com/questions/219381/how-to-exclude-files-from-visual-studio-compile/219388#2193881Answer by Kibbee for How to exclude files from Visual Studio compile?Kibbee2008-10-20T18:26:47Z2008-10-20T18:26:47Z<p>You should just be able to right click on the folder name in your solution explorer, and click "exclude from project".</p>
http://stackoverflow.com/questions/219381/how-to-exclude-files-from-visual-studio-compile/219390#2193900Answer by JesperE for How to exclude files from Visual Studio compile?JesperE2008-10-20T18:27:50Z2008-10-20T18:27:50Z<p>I'm quite sure that there should be a "Exclude from build" property on the folder, but I don't have my Visual Studio with me at the moment. At the very least there is such a property on files.</p>
http://stackoverflow.com/questions/219381/how-to-exclude-files-from-visual-studio-compile/219392#2193920Answer by Mat Nadrofsky for How to exclude files from Visual Studio compile?Mat Nadrofsky2008-10-20T18:28:13Z2008-10-20T18:28:13Z<p>1) Select the files that you don't want to have compiled on the Solution Explorer.</p>
<p>2) Right click and choose Options...</p>
<p>3) Set the "Build Action" on the files to "None".</p>
<p>That should do the trick for you!</p>
http://stackoverflow.com/questions/219381/how-to-exclude-files-from-visual-studio-compile/219394#2193945Answer by Rob Windsor for How to exclude files from Visual Studio compile?Rob Windsor2008-10-20T18:28:40Z2008-10-20T18:28:40Z<p>You could set the Build Action (in the Properties Window) to <strong>None</strong> for the files you want excluded. You could also right-click on the folder and choose <strong>Exclude from Project</strong>.</p>