Cheetah
Cheetah

Reputation: 14379

Which Project Files Should I Distribute With my Source Code?

I am releasing the source code to my project and just wanted to know which files I can leave out (if any) but still ensure that they can open the VS solution correctly and compile.

I think its just the bin and obj folders - are there any more files/folders?

Upvotes: 1

Views: 184

Answers (1)

Matthew
Matthew

Reputation: 29206

Depending on what version of Visual Studio you are using, you may want to look at one of these questions:

These list the files that should be ignored by Mercurial (a version control system). They should be identical to the files that you can omit when you distribute your source code.

As a side note, if you're going to be distributing your source code, you probably want it under version control anyway. Git and Mercurial are two popular, modern, and well-supported version control systems. Bazaar is a bit easier, but not as powerful or well-supported.

Upvotes: 1

Related Questions