views:

1699

answers:

4

How can I exclude the bin folder from SourceSafe in a Visual Studio 2008 web application? I want to be able to check in everything recursively from the solution node without picking up anything in the bin folder.

A: 

Exclude the folder from your project.

pb
+2  A: 
  • Right-click the folder in your project
  • select "Exclude from project"
cori
A: 

You can hide the folder through Windows explorer, although it'll disappear from your Visual Studio Solution Exporer, I don't think that'll affect the website.

weiran
A: 

Was this solved? I'm not sure why Excluding the folder from the project got a downvote. VSS only maps files and folders that are in a project for source control, so that solution should work.

Jeff Martin