competent_tech
competent_tech

Reputation: 44931

Which file types and folders can be ignored for version control in MonoTouch

We are trying to build our repository rules for MonoTouch 5.x and can't find any good guidance on which folders and file types can be safely omitted from the repository.

If there is a general guidance document available or can anyone provide details on the following files and folders:

Folders
  bin (already assuming this is not included)
  build (new to MonoTouch 5)
  obj (already assuming this is not included)

File Types
  .pidb
  .userprefs
  .plist

Upvotes: 5

Views: 1055

Answers (1)

chrisntr
chrisntr

Reputation: 2208

There's a .gitignore file used on the Xamarin MonoTouch Samples which would be a good set to use - https://github.com/xamarin/monotouch-samples/blob/master/.gitignore

Mostly it's .pidb, .userprefs and bin and obj folders.

You will need .plist files as these a just property lists and used to set information about your application and settings for your application.

I hope this helps,

ChrisNTR

Upvotes: 9

Related Questions