DEV Community

Discussion on: Rename a C# Project

Collapse
 
dougedmunds profile image
dougedmunds

There are many files with the old namespace in the directories 'bin' and 'obj'. Is it safe to delete the bin and obj directories and let the system recreate them?

Collapse
 
mattiascibien profile image
Mattias Cibien

Bin and obj are temporary folders generated by the C# compiler. They can be safely deleted and should never be committed in Version Control. If you need something to quickly cleanup those I suggest the shell scripts that you can find on stackoverflow.com/questions/755382...