How to exclude files from Visual Studio compile? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T23:02:40Z http://stackoverflow.com/feeds/question/219381 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/219381/how-to-exclude-files-from-visual-studio-compile 4 How to exclude files from Visual Studio compile? Larsenal 2008-10-20T18:24:33Z 2008-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#219386 1 Answer by leppie for How to exclude files from Visual Studio compile? leppie 2008-10-20T18:26:43Z 2008-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#219388 1 Answer by Kibbee for How to exclude files from Visual Studio compile? Kibbee 2008-10-20T18:26:47Z 2008-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#219390 0 Answer by JesperE for How to exclude files from Visual Studio compile? JesperE 2008-10-20T18:27:50Z 2008-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#219392 0 Answer by Mat Nadrofsky for How to exclude files from Visual Studio compile? Mat Nadrofsky 2008-10-20T18:28:13Z 2008-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#219394 5 Answer by Rob Windsor for How to exclude files from Visual Studio compile? Rob Windsor 2008-10-20T18:28:40Z 2008-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>