views:

40

answers:

2

I have my VCS set up to ignore "[project]/bin". Is this directory essential to restore a project, or can it safely be ignored?

+1  A: 

If MonoDevelop recreates the bin directory when you delete it, then this is simply a matter of taste, otherwise you have to leave it in. (Rails happens to give up if you delete its logs).

Putting empty directories under version control can make the build process more readily apparent to those who glance at the repository, but it can also clutter and distract if you'd rather see only the essentials.

jleedev
+4  A: 

The "bin" directory can be safely ignored. MonoDevelop will create it when building the project.

Lluis Sanchez