ASP.NET + subversion

Izi

Izi

Soldato
Joined
9 Dec 2007
Posts
2,718
Hi Folks,

Sorry, real newb when it comes to SVN.

I have a project which has a website, and several libraries for biz logic, data access etc.

I take it that I do not want to be includng the folders obj or bin when I commit? At the moment, two of us are working on one project and this is causing issues.

What other folders/files should be excluded? I asume the SUO file should be exlucded but the SLN file can be included?

Thanks for your help.
 
All you need to be checking in are the project source files.

The DLLs in the BIN folders your create when you compile the project.

The project files and solution files are subjective. Some might include them as it contains the library references needed for project building. Some might not as some people change settings like release/debug and such for there local builds.

The main items are the source files and any strong name keys for GAC versioning.
 
Back
Top Bottom