├── .azure ├── azure-pipelines.yml └── publish.yml ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── inlinecss.py ├── poetry.lock ├── pylintrc ├── pyproject.toml ├── stylecheck.sh ├── test.sh ├── tests ├── __init__.py ├── collateral │ ├── One.xcodeproj │ │ └── project.pbxproj │ ├── Two.xcodeproj │ │ └── project.pbxproj │ └── schemes │ │ ├── CalendarColors.xcscheme │ │ ├── CalendarMeetNow.xcscheme │ │ ├── CalendarMeetingDateTimePicker.xcscheme │ │ ├── CalendarMeetingInsights.xcscheme │ │ ├── CalendarUpNext.xcscheme │ │ ├── CalendarWidgetExt.xcscheme │ │ └── CalendarWidgetExtDataSourceKit.xcscheme ├── test_basics.py └── test_schemes.py └── xcodeproj ├── __init__.py ├── buildphases.py ├── buildrules.py ├── files.py ├── objects.py ├── other.py ├── pathobjects.py ├── pbxobject.py ├── pbxproject.py ├── schemes.py ├── targets.py └── xcobjects.py /.azure/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/.azure/azure-pipelines.yml -------------------------------------------------------------------------------- /.azure/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/.azure/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /inlinecss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/inlinecss.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/poetry.lock -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/pylintrc -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/pyproject.toml -------------------------------------------------------------------------------- /stylecheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/stylecheck.sh -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/test.sh -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/collateral/One.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/tests/collateral/One.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tests/collateral/Two.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/tests/collateral/Two.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /tests/collateral/schemes/CalendarColors.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/tests/collateral/schemes/CalendarColors.xcscheme -------------------------------------------------------------------------------- /tests/collateral/schemes/CalendarMeetNow.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/tests/collateral/schemes/CalendarMeetNow.xcscheme -------------------------------------------------------------------------------- /tests/collateral/schemes/CalendarMeetingDateTimePicker.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/tests/collateral/schemes/CalendarMeetingDateTimePicker.xcscheme -------------------------------------------------------------------------------- /tests/collateral/schemes/CalendarMeetingInsights.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/tests/collateral/schemes/CalendarMeetingInsights.xcscheme -------------------------------------------------------------------------------- /tests/collateral/schemes/CalendarUpNext.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/tests/collateral/schemes/CalendarUpNext.xcscheme -------------------------------------------------------------------------------- /tests/collateral/schemes/CalendarWidgetExt.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/tests/collateral/schemes/CalendarWidgetExt.xcscheme -------------------------------------------------------------------------------- /tests/collateral/schemes/CalendarWidgetExtDataSourceKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/tests/collateral/schemes/CalendarWidgetExtDataSourceKit.xcscheme -------------------------------------------------------------------------------- /tests/test_basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/tests/test_basics.py -------------------------------------------------------------------------------- /tests/test_schemes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/tests/test_schemes.py -------------------------------------------------------------------------------- /xcodeproj/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/xcodeproj/__init__.py -------------------------------------------------------------------------------- /xcodeproj/buildphases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/xcodeproj/buildphases.py -------------------------------------------------------------------------------- /xcodeproj/buildrules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/xcodeproj/buildrules.py -------------------------------------------------------------------------------- /xcodeproj/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/xcodeproj/files.py -------------------------------------------------------------------------------- /xcodeproj/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/xcodeproj/objects.py -------------------------------------------------------------------------------- /xcodeproj/other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/xcodeproj/other.py -------------------------------------------------------------------------------- /xcodeproj/pathobjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/xcodeproj/pathobjects.py -------------------------------------------------------------------------------- /xcodeproj/pbxobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/xcodeproj/pbxobject.py -------------------------------------------------------------------------------- /xcodeproj/pbxproject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/xcodeproj/pbxproject.py -------------------------------------------------------------------------------- /xcodeproj/schemes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/xcodeproj/schemes.py -------------------------------------------------------------------------------- /xcodeproj/targets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/xcodeproj/targets.py -------------------------------------------------------------------------------- /xcodeproj/xcobjects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/xcodeproj/HEAD/xcodeproj/xcobjects.py --------------------------------------------------------------------------------