Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IDEWorkspaceChecks.plist file suddenly appear after updated xcode

Tags:

xcode

ios

I suddenly start having this file in my xcode project after I updated my xcode:

myProject.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist 

What does this file do? Should I exclude it in version control?

like image 509
Leem Avatar asked May 16 '18 10:05

Leem


1 Answers

You can take a look on the Xcode release notes

Xcode 9.3 adds a new IDEWorkspaceChecks.plist file to a workspace's shared data, to store the state of necessary workspace checks. Committing this file to source control will prevent unnecessary rerunning of those checks for each user opening the workspace. (37293167)

It's good to commit it to your repository.

like image 114
Michał Kwiecień Avatar answered Sep 19 '22 18:09

Michał Kwiecień