├── .all-contributorsrc ├── .gitattributes ├── .github ├── changelog-configuration.json └── workflows │ ├── XcodeGraph.yml │ ├── conventional-pr.yml │ ├── deploy.yml │ ├── docs.yml │ └── release.yml ├── .gitignore ├── .mise.toml ├── .mise └── tasks │ ├── docs │ └── build │ ├── lint │ └── lint-fix ├── .swiftformat ├── .swiftlint.yml ├── AGENTS.md ├── BREAKME.md ├── CHANGELOG.md ├── CLAUDE.md ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── Package.resolved ├── Package.swift ├── README.md ├── RELEASE.md ├── Sources ├── XcodeGraph │ ├── DependenciesGraph │ │ └── DependenciesGraph.swift │ ├── Extensions │ │ └── SettingsDictionary+Extras.swift │ ├── Graph │ │ ├── ConditionalGraphTarget.swift │ │ ├── Graph.swift │ │ ├── GraphDependency.swift │ │ ├── GraphEdge.swift │ │ └── GraphTarget.swift │ ├── Models │ │ ├── AnalyzeAction.swift │ │ ├── ArchiveAction.swift │ │ ├── Arguments.swift │ │ ├── AutogenerationOptions.swift │ │ ├── BinaryArchitecture.swift │ │ ├── BuildAction.swift │ │ ├── BuildConfiguration.swift │ │ ├── BuildRule+CompilerSpec.swift │ │ ├── BuildRule+FileType.swift │ │ ├── BuildRule.swift │ │ ├── BuildableFolder.swift │ │ ├── BuildableFolderException.swift │ │ ├── BuildableFolderExceptions.swift │ │ ├── CompatibleXcodeVersions.swift │ │ ├── CopyFileElement.swift │ │ ├── CopyFilesAction.swift │ │ ├── CoreDataModel.swift │ │ ├── DeploymentTargets.swift │ │ ├── Destination.swift │ │ ├── EnvironmentVariable.swift │ │ ├── ExecutionAction.swift │ │ ├── FileCodeGen.swift │ │ ├── FileElement.swift │ │ ├── Headers.swift │ │ ├── IDETemplateMacros.swift │ │ ├── LaunchArgument.swift │ │ ├── LaunchStyle.swift │ │ ├── MergedBinaryType.swift │ │ ├── Metadata │ │ │ ├── FrameworkMetadata.swift │ │ │ ├── LibraryMetadata.swift │ │ │ ├── SystemFrameworkMetadata.swift │ │ │ ├── TargetMetadata.swift │ │ │ └── XCFrameworkMetadata.swift │ │ ├── MetalOptions.swift │ │ ├── OnDemandResourcesTags.swift │ │ ├── Package.swift │ │ ├── Platform.swift │ │ ├── PlatformCondition.swift │ │ ├── PlatformFilter.swift │ │ ├── Plist.swift │ │ ├── PrivacyManifest.swift │ │ ├── Product.swift │ │ ├── ProfileAction.swift │ │ ├── Project.swift │ │ ├── ProjectGroup.swift │ │ ├── ProjectOptions.swift │ │ ├── RawScriptBuildPhase.swift │ │ ├── Requirement.swift │ │ ├── ResourceFileElement.swift │ │ ├── ResourceFileElements.swift │ │ ├── ResourceSynthesizer.swift │ │ ├── RunAction.swift │ │ ├── RunActionOptions.swift │ │ ├── SDKSource.swift │ │ ├── SDKType.swift │ │ ├── Scheme.swift │ │ ├── SchemeDiagnosticsOptions.swift │ │ ├── ScreenCaptureFormat.swift │ │ ├── Settings.swift │ │ ├── SimulatedLocation.swift │ │ ├── SourceFile.swift │ │ ├── SourceFileGlob.swift │ │ ├── Target.swift │ │ ├── TargetDependency.swift │ │ ├── TargetReference.swift │ │ ├── TargetScript.swift │ │ ├── TargetType.swift │ │ ├── TestAction.swift │ │ ├── TestPlan.swift │ │ ├── TestableTarget.swift │ │ ├── TestingOptions.swift │ │ ├── Version.swift │ │ ├── Workspace.swift │ │ ├── WorkspaceGenerationOptions.swift │ │ └── XCFrameworkInfoPlist.swift │ ├── PackageInfo.swift │ └── PackageTrait.swift ├── XcodeGraphMapper │ ├── Documentation.docc │ │ └── XcodeProjMapper.md │ ├── Extensions │ │ ├── PBXProject+Extensions.swift │ │ ├── Package+Extensions.swift │ │ ├── Platform+Extensions.swift │ │ ├── PlatformFilter+Extensions.swift │ │ ├── TargetDependency+Extensions.swift │ │ ├── XCWorkspace+Extensions.swift │ │ └── XCWorkspaceDataFileRef+Extensions.swift │ ├── Mappers │ │ ├── Graph │ │ │ └── XcodeGraphMapper.swift │ │ ├── Packages │ │ │ ├── PackageMapper.swift │ │ │ └── XCPackageMapper.swift │ │ ├── Phases │ │ │ ├── BuildPhaseConstants.swift │ │ │ ├── PBXCopyFilesBuildPhaseMapper.swift │ │ │ ├── PBXCoreDataModelsBuildPhaseMapper.swift │ │ │ ├── PBXFrameworksBuildPhaseMapper.swift │ │ │ ├── PBXHeadersBuildPhaseMapper.swift │ │ │ ├── PBXResourcesBuildPhaseMapper.swift │ │ │ ├── PBXScriptsBuildPhaseMapper.swift │ │ │ └── PBXSourcesBuildPhaseMapper.swift │ │ ├── Project │ │ │ ├── PBXProjectMapper.swift │ │ │ ├── ProjectAttribute.swift │ │ │ └── XcodeProj+Extensions.swift │ │ ├── Schemes │ │ │ ├── SchemeDiagnosticsOptions+XCScheme.swift │ │ │ ├── XCSchemeMapper.swift │ │ │ └── XCTestPlan.swift │ │ ├── Settings │ │ │ ├── BuildSettings.swift │ │ │ ├── XCConfigurationList+Helpers.swift │ │ │ └── XCConfigurationMapper.swift │ │ ├── Targets │ │ │ ├── PBXBuildRuleMapper.swift │ │ │ ├── PBXTarget+BuildHeaders.swift │ │ │ ├── PBXTarget+BuildSettings.swift │ │ │ ├── PBXTarget+GraphMapping.swift │ │ │ ├── PBXTarget+PlatformInference.swift │ │ │ ├── PBXTargetDependency+PlatformCondition.swift │ │ │ ├── PBXTargetDependencyMapper.swift │ │ │ ├── PBXTargetMapper.swift │ │ │ └── TargetDependency+GraphMapping.swift │ │ └── Workspace │ │ │ └── XCWorkspaceMapper.swift │ └── Utilities │ │ ├── ConfigurationMatcher.swift │ │ ├── DeveloperDirectoryProvider.swift │ │ ├── Optional+Throwing.swift │ │ ├── PackageInfoLoader.swift │ │ ├── PathDependencyMapper.swift │ │ └── ProjectNativeTarget.swift └── XcodeMetadata │ ├── Extensions │ ├── BinaryArchitecture+Extension.swift │ ├── FileHandle+ReadHelpers.swift │ ├── MachOByteSwapExtensions.swift │ └── Sequence+ExecutionContext.swift │ └── Providers │ ├── FrameworkMetadataProvider.swift │ ├── LibraryMetadataProvider.swift │ ├── PrecompiledMetadataProvider.swift │ ├── SystemFrameworkMetadataProvider.swift │ └── XCFrameworkMetadataProvider.swift ├── Tests ├── Fixtures │ ├── MyFramework.xcframework │ │ ├── Info.plist │ │ ├── ios-arm64 │ │ │ └── MyFramework.framework │ │ │ │ ├── Headers │ │ │ │ └── MyFramework-Swift.h │ │ │ │ ├── Info.plist │ │ │ │ ├── Modules │ │ │ │ ├── MyFramework.swiftmodule │ │ │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ │ │ ├── arm64-apple-ios.swiftinterface │ │ │ │ │ ├── arm64.swiftdoc │ │ │ │ │ └── arm64.swiftinterface │ │ │ │ └── module.modulemap │ │ │ │ └── MyFramework │ │ └── ios-x86_64-simulator │ │ │ └── MyFramework.framework │ │ │ ├── Headers │ │ │ └── MyFramework-Swift.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ ├── MyFramework.swiftmodule │ │ │ │ ├── x86_64-apple-ios-simulator.swiftdoc │ │ │ │ ├── x86_64-apple-ios-simulator.swiftinterface │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ └── x86_64.swiftinterface │ │ │ └── module.modulemap │ │ │ ├── MyFramework │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── MyFrameworkMissingArch.xcframework │ │ ├── Info.plist │ │ └── ios-arm64 │ │ │ └── MyFrameworkMissingArch.framework │ │ │ ├── Headers │ │ │ └── MyFramework-Swift.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ ├── MyFramework.swiftmodule │ │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ │ ├── arm64-apple-ios.swiftinterface │ │ │ │ ├── arm64.swiftdoc │ │ │ │ └── arm64.swiftinterface │ │ │ └── module.modulemap │ │ │ └── MyFrameworkMissingArch │ ├── MyMergeableFramework.xcframework │ │ ├── Info.plist │ │ ├── ios-arm64 │ │ │ └── MyMergeableFramework.framework │ │ │ │ ├── Headers │ │ │ │ └── MyMergeableFramework-Swift.h │ │ │ │ ├── Info.plist │ │ │ │ ├── Modules │ │ │ │ ├── MyMergeableFramework.swiftmodule │ │ │ │ │ ├── arm64-apple-ios.abi.json │ │ │ │ │ ├── arm64-apple-ios.private.swiftinterface │ │ │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ │ │ ├── arm64-apple-ios.swiftinterface │ │ │ │ │ └── arm64-apple-ios.swiftmodule │ │ │ │ └── module.modulemap │ │ │ │ └── MyMergeableFramework │ │ └── ios-x86_64-simulator │ │ │ └── MyMergeableFramework.framework │ │ │ ├── Headers │ │ │ └── MyMergeableFramework-Swift.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ ├── MyMergeableFramework.swiftmodule │ │ │ │ ├── x86_64-apple-ios-simulator.abi.json │ │ │ │ ├── x86_64-apple-ios-simulator.private.swiftinterface │ │ │ │ ├── x86_64-apple-ios-simulator.swiftdoc │ │ │ │ ├── x86_64-apple-ios-simulator.swiftinterface │ │ │ │ └── x86_64-apple-ios-simulator.swiftmodule │ │ │ └── module.modulemap │ │ │ ├── MyMergeableFramework │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── MyStaticLibrary.xcframework │ │ ├── Info.plist │ │ ├── ios-arm64 │ │ │ └── libMyStaticLibrary.a │ │ └── ios-x86_64-simulator │ │ │ └── libMyStaticLibrary.a │ ├── libStaticLibrary.a │ ├── xpm.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── xpm │ └── xpm.framework │ │ ├── Headers │ │ └── xpm.h │ │ ├── Info.plist │ │ ├── Modules │ │ └── module.modulemap │ │ ├── PrivateHeaders │ │ └── private.h │ │ └── xpm ├── XcodeGraphMapperTests │ ├── MapperTests │ │ ├── Graph │ │ │ └── XcodeGraphMapperTests.swift │ │ ├── Package │ │ │ ├── PackageMapperTests.swift │ │ │ └── XCPackageMapperTests.swift │ │ ├── Phases │ │ │ ├── PBXCopyFilesBuildPhaseMapperTests.swift │ │ │ ├── PBXCoreDataModelsBuildPhaseMapperTests.swift │ │ │ ├── PBXFrameworksBuildPhaseMapperTests.swift │ │ │ ├── PBXHeadersBuildPhaseMapperTests.swift │ │ │ ├── PBXResourcesBuildPhaseMapperTests.swift │ │ │ ├── PBXScriptsBuildPhaseMapperTests.swift │ │ │ └── PBXSourcesBuildPhaseMapperTests.swift │ │ ├── Project │ │ │ └── PBXProjectMapperTests.swift │ │ ├── Schemes │ │ │ └── XCSchemeMapperTests.swift │ │ ├── Settings │ │ │ ├── ConfigurationMatcherTests.swift │ │ │ └── XCConfigurationMapperTests.swift │ │ ├── Target │ │ │ ├── PBXBuildRuleMapperTests.swift │ │ │ ├── PBXTargetDependencyMapper.swift │ │ │ ├── PBXTargetMapperTests.swift │ │ │ └── TargetDependencyExtensionsTests.swift │ │ └── Workspace │ │ │ └── XCWorkspaceMapperTests.swift │ ├── Mocks │ │ ├── AssertionsTesting.swift │ │ └── MockDefaults.swift │ └── TestData │ │ ├── .swift │ │ ├── PBXBuildRule+TestData.swift │ │ ├── PBXFileReference+TestData.swift │ │ ├── PBXGroup+TestData.swift │ │ ├── PBXNativeTarget+TestData.swift │ │ ├── PBXProj+TestData.swift │ │ ├── PBXProject+TestData.swift │ │ ├── PBXShellScriptBuildPhase+TestData.swift │ │ ├── PBXTargetDependency+TestData.swift │ │ ├── PBXVariantGroup+TestData.swift │ │ ├── XCBuildConfiguration+TestData.swift │ │ ├── XCConfigurationList+TestData.swift │ │ ├── XCScheme+TestData.swift │ │ ├── XCSchemeTestableReference+TestData.swift │ │ ├── XCUserData+TestData.swift │ │ ├── XCVersionGroup+TestData.swift │ │ ├── XCWorkspace+TestData.swift │ │ ├── XCWorkspaceDataElement+TestData.swift │ │ ├── XCWorkspaceDataGroup+TestData.swift │ │ └── XcodeProj+TestData.swift ├── XcodeGraphTests │ ├── DependenciesGraph │ │ └── DependenciesGraphTests.swift │ ├── Extensions │ │ ├── SettingsDictionary+ExtrasTests.swift │ │ └── XCTestCase+Extras.swift │ ├── Graph │ │ ├── GraphDependencyTests.swift │ │ ├── GraphTargetTests.swift │ │ └── GraphTests.swift │ └── Models │ │ ├── AnalyzeActionTests.swift │ │ ├── ArchiveActionTests.swift │ │ ├── ArgumentsTests.swift │ │ ├── BinaryArchitectureTests.swift │ │ ├── BuildActionTests.swift │ │ ├── BuildConfigurationTests.swift │ │ ├── BuildRule.CompilerSpecTests.swift │ │ ├── BuildRule.FileTypeTests.swift │ │ ├── BuildRuleTests.swift │ │ ├── CompatibleXcodeVersionsTests.swift │ │ ├── CopyFileElementTests.swift │ │ ├── CopyFilesActionTests.swift │ │ ├── CoreDataModelTests.swift │ │ ├── ExecutionActionTests.swift │ │ ├── FileElementTests.swift │ │ ├── HeadersTests.swift │ │ ├── IDETemplateMacrosTests.swift │ │ ├── InfoPlistTests.swift │ │ ├── PackageInfoTests.swift │ │ ├── PackageTests.swift │ │ ├── PlatformFilterTests.swift │ │ ├── PlatformTests.swift │ │ ├── ProductTests.swift │ │ ├── ProfileActionTests.swift │ │ ├── ProjectGroupTests.swift │ │ ├── ProjectTests.swift │ │ ├── RawScriptBuildPhaseTests.swift │ │ ├── RequirementTests.swift │ │ ├── ResourceFileElementTests.swift │ │ ├── ResourceSynthesizerTests.swift │ │ ├── RunActionTests.swift │ │ ├── SDKSourceTests.swift │ │ ├── SchemeTests.swift │ │ ├── SettingsTests.swift │ │ ├── SourceFileTests.swift │ │ ├── TargetDependencyTests.swift │ │ ├── TargetReferenceTests.swift │ │ ├── TargetScriptTests.swift │ │ ├── TargetTests.swift │ │ ├── TestActionTests.swift │ │ ├── TestPlanTests.swift │ │ ├── TestableTargetTests.swift │ │ ├── VersionTests.swift │ │ ├── WorkspaceGenerationOptionsTests.swift │ │ ├── WorkspaceTests.swift │ │ └── XCFrameworkInfoPlistTests.swift └── XcodeMetadataTests │ ├── AssertionsTesting.swift │ ├── FrameworkMetadataProviderTests.swift │ ├── LibraryMetadataProviderTests.swift │ ├── PrecompiledMetadataProviderTests.swift │ ├── SystemFrameworkMetadataProviderTests.swift │ └── XCFrameworkMetadataProviderTests.swift ├── cliff.toml └── renovate.json /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | fixtures/* binary 2 | -------------------------------------------------------------------------------- /.github/changelog-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/.github/changelog-configuration.json -------------------------------------------------------------------------------- /.github/workflows/XcodeGraph.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/.github/workflows/XcodeGraph.yml -------------------------------------------------------------------------------- /.github/workflows/conventional-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/.github/workflows/conventional-pr.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/.gitignore -------------------------------------------------------------------------------- /.mise.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/.mise.toml -------------------------------------------------------------------------------- /.mise/tasks/docs/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/.mise/tasks/docs/build -------------------------------------------------------------------------------- /.mise/tasks/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/.mise/tasks/lint -------------------------------------------------------------------------------- /.mise/tasks/lint-fix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/.mise/tasks/lint-fix -------------------------------------------------------------------------------- /.swiftformat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/.swiftformat -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /AGENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/AGENTS.md -------------------------------------------------------------------------------- /BREAKME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/BREAKME.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- 1 | @AGENTS.md 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/RELEASE.md -------------------------------------------------------------------------------- /Sources/XcodeGraph/DependenciesGraph/DependenciesGraph.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/DependenciesGraph/DependenciesGraph.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Extensions/SettingsDictionary+Extras.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Extensions/SettingsDictionary+Extras.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Graph/ConditionalGraphTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Graph/ConditionalGraphTarget.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Graph/Graph.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Graph/Graph.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Graph/GraphDependency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Graph/GraphDependency.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Graph/GraphEdge.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Graph/GraphEdge.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Graph/GraphTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Graph/GraphTarget.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/AnalyzeAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/AnalyzeAction.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/ArchiveAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/ArchiveAction.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/Arguments.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/Arguments.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/AutogenerationOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/AutogenerationOptions.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/BinaryArchitecture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/BinaryArchitecture.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/BuildAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/BuildAction.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/BuildConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/BuildConfiguration.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/BuildRule+CompilerSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/BuildRule+CompilerSpec.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/BuildRule+FileType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/BuildRule+FileType.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/BuildRule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/BuildRule.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/BuildableFolder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/BuildableFolder.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/BuildableFolderException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/BuildableFolderException.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/BuildableFolderExceptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/BuildableFolderExceptions.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/CompatibleXcodeVersions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/CompatibleXcodeVersions.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/CopyFileElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/CopyFileElement.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/CopyFilesAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/CopyFilesAction.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/CoreDataModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/CoreDataModel.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/DeploymentTargets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/DeploymentTargets.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/Destination.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/Destination.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/EnvironmentVariable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/EnvironmentVariable.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/ExecutionAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/ExecutionAction.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/FileCodeGen.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/FileCodeGen.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/FileElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/FileElement.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/Headers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/Headers.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/IDETemplateMacros.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/IDETemplateMacros.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/LaunchArgument.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/LaunchArgument.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/LaunchStyle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/LaunchStyle.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/MergedBinaryType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/MergedBinaryType.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/Metadata/FrameworkMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/Metadata/FrameworkMetadata.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/Metadata/LibraryMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/Metadata/LibraryMetadata.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/Metadata/SystemFrameworkMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/Metadata/SystemFrameworkMetadata.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/Metadata/TargetMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/Metadata/TargetMetadata.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/Metadata/XCFrameworkMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/Metadata/XCFrameworkMetadata.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/MetalOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/MetalOptions.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/OnDemandResourcesTags.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/OnDemandResourcesTags.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/Package.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/Platform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/Platform.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/PlatformCondition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/PlatformCondition.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/PlatformFilter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/PlatformFilter.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/Plist.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/Plist.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/PrivacyManifest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/PrivacyManifest.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/Product.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/Product.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/ProfileAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/ProfileAction.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/Project.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/Project.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/ProjectGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/ProjectGroup.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/ProjectOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/ProjectOptions.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/RawScriptBuildPhase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/RawScriptBuildPhase.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/Requirement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/Requirement.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/ResourceFileElement.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/ResourceFileElement.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/ResourceFileElements.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/ResourceFileElements.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/ResourceSynthesizer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/ResourceSynthesizer.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/RunAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/RunAction.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/RunActionOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/RunActionOptions.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/SDKSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/SDKSource.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/SDKType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/SDKType.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/Scheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/Scheme.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/SchemeDiagnosticsOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/SchemeDiagnosticsOptions.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/ScreenCaptureFormat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/ScreenCaptureFormat.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/Settings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/Settings.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/SimulatedLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/SimulatedLocation.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/SourceFile.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/SourceFile.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/SourceFileGlob.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/SourceFileGlob.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/Target.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/Target.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/TargetDependency.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/TargetDependency.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/TargetReference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/TargetReference.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/TargetScript.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/TargetScript.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/TargetType.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/TargetType.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/TestAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/TestAction.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/TestPlan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/TestPlan.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/TestableTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/TestableTarget.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/TestingOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/TestingOptions.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/Version.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/Version.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/Workspace.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/Workspace.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/WorkspaceGenerationOptions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/WorkspaceGenerationOptions.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/Models/XCFrameworkInfoPlist.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/Models/XCFrameworkInfoPlist.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/PackageInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/PackageInfo.swift -------------------------------------------------------------------------------- /Sources/XcodeGraph/PackageTrait.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraph/PackageTrait.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Documentation.docc/XcodeProjMapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Documentation.docc/XcodeProjMapper.md -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Extensions/PBXProject+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Extensions/PBXProject+Extensions.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Extensions/Package+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Extensions/Package+Extensions.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Extensions/Platform+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Extensions/Platform+Extensions.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Extensions/PlatformFilter+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Extensions/PlatformFilter+Extensions.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Extensions/TargetDependency+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Extensions/TargetDependency+Extensions.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Extensions/XCWorkspace+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Extensions/XCWorkspace+Extensions.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Extensions/XCWorkspaceDataFileRef+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Extensions/XCWorkspaceDataFileRef+Extensions.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Graph/XcodeGraphMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Graph/XcodeGraphMapper.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Packages/PackageMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Packages/PackageMapper.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Packages/XCPackageMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Packages/XCPackageMapper.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Phases/BuildPhaseConstants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Phases/BuildPhaseConstants.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Phases/PBXCopyFilesBuildPhaseMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Phases/PBXCopyFilesBuildPhaseMapper.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Phases/PBXCoreDataModelsBuildPhaseMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Phases/PBXCoreDataModelsBuildPhaseMapper.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Phases/PBXFrameworksBuildPhaseMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Phases/PBXFrameworksBuildPhaseMapper.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Phases/PBXHeadersBuildPhaseMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Phases/PBXHeadersBuildPhaseMapper.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Phases/PBXResourcesBuildPhaseMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Phases/PBXResourcesBuildPhaseMapper.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Phases/PBXScriptsBuildPhaseMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Phases/PBXScriptsBuildPhaseMapper.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Phases/PBXSourcesBuildPhaseMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Phases/PBXSourcesBuildPhaseMapper.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Project/PBXProjectMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Project/PBXProjectMapper.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Project/ProjectAttribute.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Project/ProjectAttribute.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Project/XcodeProj+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Project/XcodeProj+Extensions.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Schemes/SchemeDiagnosticsOptions+XCScheme.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Schemes/SchemeDiagnosticsOptions+XCScheme.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Schemes/XCSchemeMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Schemes/XCSchemeMapper.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Schemes/XCTestPlan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Schemes/XCTestPlan.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Settings/BuildSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Settings/BuildSettings.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Settings/XCConfigurationList+Helpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Settings/XCConfigurationList+Helpers.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Settings/XCConfigurationMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Settings/XCConfigurationMapper.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Targets/PBXBuildRuleMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Targets/PBXBuildRuleMapper.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Targets/PBXTarget+BuildHeaders.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Targets/PBXTarget+BuildHeaders.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Targets/PBXTarget+BuildSettings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Targets/PBXTarget+BuildSettings.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Targets/PBXTarget+GraphMapping.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Targets/PBXTarget+GraphMapping.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Targets/PBXTarget+PlatformInference.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Targets/PBXTarget+PlatformInference.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Targets/PBXTargetDependency+PlatformCondition.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Targets/PBXTargetDependency+PlatformCondition.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Targets/PBXTargetDependencyMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Targets/PBXTargetDependencyMapper.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Targets/PBXTargetMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Targets/PBXTargetMapper.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Targets/TargetDependency+GraphMapping.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Targets/TargetDependency+GraphMapping.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Mappers/Workspace/XCWorkspaceMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Mappers/Workspace/XCWorkspaceMapper.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Utilities/ConfigurationMatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Utilities/ConfigurationMatcher.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Utilities/DeveloperDirectoryProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Utilities/DeveloperDirectoryProvider.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Utilities/Optional+Throwing.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Utilities/Optional+Throwing.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Utilities/PackageInfoLoader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Utilities/PackageInfoLoader.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Utilities/PathDependencyMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Utilities/PathDependencyMapper.swift -------------------------------------------------------------------------------- /Sources/XcodeGraphMapper/Utilities/ProjectNativeTarget.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeGraphMapper/Utilities/ProjectNativeTarget.swift -------------------------------------------------------------------------------- /Sources/XcodeMetadata/Extensions/BinaryArchitecture+Extension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeMetadata/Extensions/BinaryArchitecture+Extension.swift -------------------------------------------------------------------------------- /Sources/XcodeMetadata/Extensions/FileHandle+ReadHelpers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeMetadata/Extensions/FileHandle+ReadHelpers.swift -------------------------------------------------------------------------------- /Sources/XcodeMetadata/Extensions/MachOByteSwapExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeMetadata/Extensions/MachOByteSwapExtensions.swift -------------------------------------------------------------------------------- /Sources/XcodeMetadata/Extensions/Sequence+ExecutionContext.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeMetadata/Extensions/Sequence+ExecutionContext.swift -------------------------------------------------------------------------------- /Sources/XcodeMetadata/Providers/FrameworkMetadataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeMetadata/Providers/FrameworkMetadataProvider.swift -------------------------------------------------------------------------------- /Sources/XcodeMetadata/Providers/LibraryMetadataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeMetadata/Providers/LibraryMetadataProvider.swift -------------------------------------------------------------------------------- /Sources/XcodeMetadata/Providers/PrecompiledMetadataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeMetadata/Providers/PrecompiledMetadataProvider.swift -------------------------------------------------------------------------------- /Sources/XcodeMetadata/Providers/SystemFrameworkMetadataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeMetadata/Providers/SystemFrameworkMetadataProvider.swift -------------------------------------------------------------------------------- /Sources/XcodeMetadata/Providers/XCFrameworkMetadataProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Sources/XcodeMetadata/Providers/XCFrameworkMetadataProvider.swift -------------------------------------------------------------------------------- /Tests/Fixtures/MyFramework.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyFramework.xcframework/Info.plist -------------------------------------------------------------------------------- /Tests/Fixtures/MyFramework.xcframework/ios-arm64/MyFramework.framework/Headers/MyFramework-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyFramework.xcframework/ios-arm64/MyFramework.framework/Headers/MyFramework-Swift.h -------------------------------------------------------------------------------- /Tests/Fixtures/MyFramework.xcframework/ios-arm64/MyFramework.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyFramework.xcframework/ios-arm64/MyFramework.framework/Info.plist -------------------------------------------------------------------------------- /Tests/Fixtures/MyFramework.xcframework/ios-arm64/MyFramework.framework/Modules/MyFramework.swiftmodule/arm64-apple-ios.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyFramework.xcframework/ios-arm64/MyFramework.framework/Modules/MyFramework.swiftmodule/arm64-apple-ios.swiftdoc -------------------------------------------------------------------------------- /Tests/Fixtures/MyFramework.xcframework/ios-arm64/MyFramework.framework/Modules/MyFramework.swiftmodule/arm64-apple-ios.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyFramework.xcframework/ios-arm64/MyFramework.framework/Modules/MyFramework.swiftmodule/arm64-apple-ios.swiftinterface -------------------------------------------------------------------------------- /Tests/Fixtures/MyFramework.xcframework/ios-arm64/MyFramework.framework/Modules/MyFramework.swiftmodule/arm64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyFramework.xcframework/ios-arm64/MyFramework.framework/Modules/MyFramework.swiftmodule/arm64.swiftdoc -------------------------------------------------------------------------------- /Tests/Fixtures/MyFramework.xcframework/ios-arm64/MyFramework.framework/Modules/MyFramework.swiftmodule/arm64.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyFramework.xcframework/ios-arm64/MyFramework.framework/Modules/MyFramework.swiftmodule/arm64.swiftinterface -------------------------------------------------------------------------------- /Tests/Fixtures/MyFramework.xcframework/ios-arm64/MyFramework.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyFramework.xcframework/ios-arm64/MyFramework.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Tests/Fixtures/MyFramework.xcframework/ios-arm64/MyFramework.framework/MyFramework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyFramework.xcframework/ios-arm64/MyFramework.framework/MyFramework -------------------------------------------------------------------------------- /Tests/Fixtures/MyFramework.xcframework/ios-x86_64-simulator/MyFramework.framework/Headers/MyFramework-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyFramework.xcframework/ios-x86_64-simulator/MyFramework.framework/Headers/MyFramework-Swift.h -------------------------------------------------------------------------------- /Tests/Fixtures/MyFramework.xcframework/ios-x86_64-simulator/MyFramework.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyFramework.xcframework/ios-x86_64-simulator/MyFramework.framework/Info.plist -------------------------------------------------------------------------------- /Tests/Fixtures/MyFramework.xcframework/ios-x86_64-simulator/MyFramework.framework/Modules/MyFramework.swiftmodule/x86_64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyFramework.xcframework/ios-x86_64-simulator/MyFramework.framework/Modules/MyFramework.swiftmodule/x86_64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /Tests/Fixtures/MyFramework.xcframework/ios-x86_64-simulator/MyFramework.framework/Modules/MyFramework.swiftmodule/x86_64-apple-ios-simulator.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyFramework.xcframework/ios-x86_64-simulator/MyFramework.framework/Modules/MyFramework.swiftmodule/x86_64-apple-ios-simulator.swiftinterface -------------------------------------------------------------------------------- /Tests/Fixtures/MyFramework.xcframework/ios-x86_64-simulator/MyFramework.framework/Modules/MyFramework.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyFramework.xcframework/ios-x86_64-simulator/MyFramework.framework/Modules/MyFramework.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Tests/Fixtures/MyFramework.xcframework/ios-x86_64-simulator/MyFramework.framework/Modules/MyFramework.swiftmodule/x86_64.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyFramework.xcframework/ios-x86_64-simulator/MyFramework.framework/Modules/MyFramework.swiftmodule/x86_64.swiftinterface -------------------------------------------------------------------------------- /Tests/Fixtures/MyFramework.xcframework/ios-x86_64-simulator/MyFramework.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyFramework.xcframework/ios-x86_64-simulator/MyFramework.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Tests/Fixtures/MyFramework.xcframework/ios-x86_64-simulator/MyFramework.framework/MyFramework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyFramework.xcframework/ios-x86_64-simulator/MyFramework.framework/MyFramework -------------------------------------------------------------------------------- /Tests/Fixtures/MyFramework.xcframework/ios-x86_64-simulator/MyFramework.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyFramework.xcframework/ios-x86_64-simulator/MyFramework.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Tests/Fixtures/MyFrameworkMissingArch.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyFrameworkMissingArch.xcframework/Info.plist -------------------------------------------------------------------------------- /Tests/Fixtures/MyFrameworkMissingArch.xcframework/ios-arm64/MyFrameworkMissingArch.framework/Headers/MyFramework-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyFrameworkMissingArch.xcframework/ios-arm64/MyFrameworkMissingArch.framework/Headers/MyFramework-Swift.h -------------------------------------------------------------------------------- /Tests/Fixtures/MyFrameworkMissingArch.xcframework/ios-arm64/MyFrameworkMissingArch.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyFrameworkMissingArch.xcframework/ios-arm64/MyFrameworkMissingArch.framework/Info.plist -------------------------------------------------------------------------------- /Tests/Fixtures/MyFrameworkMissingArch.xcframework/ios-arm64/MyFrameworkMissingArch.framework/Modules/MyFramework.swiftmodule/arm64-apple-ios.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyFrameworkMissingArch.xcframework/ios-arm64/MyFrameworkMissingArch.framework/Modules/MyFramework.swiftmodule/arm64-apple-ios.swiftdoc -------------------------------------------------------------------------------- /Tests/Fixtures/MyFrameworkMissingArch.xcframework/ios-arm64/MyFrameworkMissingArch.framework/Modules/MyFramework.swiftmodule/arm64-apple-ios.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyFrameworkMissingArch.xcframework/ios-arm64/MyFrameworkMissingArch.framework/Modules/MyFramework.swiftmodule/arm64-apple-ios.swiftinterface -------------------------------------------------------------------------------- /Tests/Fixtures/MyFrameworkMissingArch.xcframework/ios-arm64/MyFrameworkMissingArch.framework/Modules/MyFramework.swiftmodule/arm64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyFrameworkMissingArch.xcframework/ios-arm64/MyFrameworkMissingArch.framework/Modules/MyFramework.swiftmodule/arm64.swiftdoc -------------------------------------------------------------------------------- /Tests/Fixtures/MyFrameworkMissingArch.xcframework/ios-arm64/MyFrameworkMissingArch.framework/Modules/MyFramework.swiftmodule/arm64.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyFrameworkMissingArch.xcframework/ios-arm64/MyFrameworkMissingArch.framework/Modules/MyFramework.swiftmodule/arm64.swiftinterface -------------------------------------------------------------------------------- /Tests/Fixtures/MyFrameworkMissingArch.xcframework/ios-arm64/MyFrameworkMissingArch.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyFrameworkMissingArch.xcframework/ios-arm64/MyFrameworkMissingArch.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Tests/Fixtures/MyFrameworkMissingArch.xcframework/ios-arm64/MyFrameworkMissingArch.framework/MyFrameworkMissingArch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyFrameworkMissingArch.xcframework/ios-arm64/MyFrameworkMissingArch.framework/MyFrameworkMissingArch -------------------------------------------------------------------------------- /Tests/Fixtures/MyMergeableFramework.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyMergeableFramework.xcframework/Info.plist -------------------------------------------------------------------------------- /Tests/Fixtures/MyMergeableFramework.xcframework/ios-arm64/MyMergeableFramework.framework/Headers/MyMergeableFramework-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyMergeableFramework.xcframework/ios-arm64/MyMergeableFramework.framework/Headers/MyMergeableFramework-Swift.h -------------------------------------------------------------------------------- /Tests/Fixtures/MyMergeableFramework.xcframework/ios-arm64/MyMergeableFramework.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyMergeableFramework.xcframework/ios-arm64/MyMergeableFramework.framework/Info.plist -------------------------------------------------------------------------------- /Tests/Fixtures/MyMergeableFramework.xcframework/ios-arm64/MyMergeableFramework.framework/Modules/MyMergeableFramework.swiftmodule/arm64-apple-ios.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyMergeableFramework.xcframework/ios-arm64/MyMergeableFramework.framework/Modules/MyMergeableFramework.swiftmodule/arm64-apple-ios.abi.json -------------------------------------------------------------------------------- /Tests/Fixtures/MyMergeableFramework.xcframework/ios-arm64/MyMergeableFramework.framework/Modules/MyMergeableFramework.swiftmodule/arm64-apple-ios.private.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyMergeableFramework.xcframework/ios-arm64/MyMergeableFramework.framework/Modules/MyMergeableFramework.swiftmodule/arm64-apple-ios.private.swiftinterface -------------------------------------------------------------------------------- /Tests/Fixtures/MyMergeableFramework.xcframework/ios-arm64/MyMergeableFramework.framework/Modules/MyMergeableFramework.swiftmodule/arm64-apple-ios.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyMergeableFramework.xcframework/ios-arm64/MyMergeableFramework.framework/Modules/MyMergeableFramework.swiftmodule/arm64-apple-ios.swiftdoc -------------------------------------------------------------------------------- /Tests/Fixtures/MyMergeableFramework.xcframework/ios-arm64/MyMergeableFramework.framework/Modules/MyMergeableFramework.swiftmodule/arm64-apple-ios.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyMergeableFramework.xcframework/ios-arm64/MyMergeableFramework.framework/Modules/MyMergeableFramework.swiftmodule/arm64-apple-ios.swiftinterface -------------------------------------------------------------------------------- /Tests/Fixtures/MyMergeableFramework.xcframework/ios-arm64/MyMergeableFramework.framework/Modules/MyMergeableFramework.swiftmodule/arm64-apple-ios.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyMergeableFramework.xcframework/ios-arm64/MyMergeableFramework.framework/Modules/MyMergeableFramework.swiftmodule/arm64-apple-ios.swiftmodule -------------------------------------------------------------------------------- /Tests/Fixtures/MyMergeableFramework.xcframework/ios-arm64/MyMergeableFramework.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyMergeableFramework.xcframework/ios-arm64/MyMergeableFramework.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Tests/Fixtures/MyMergeableFramework.xcframework/ios-arm64/MyMergeableFramework.framework/MyMergeableFramework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyMergeableFramework.xcframework/ios-arm64/MyMergeableFramework.framework/MyMergeableFramework -------------------------------------------------------------------------------- /Tests/Fixtures/MyMergeableFramework.xcframework/ios-x86_64-simulator/MyMergeableFramework.framework/Headers/MyMergeableFramework-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyMergeableFramework.xcframework/ios-x86_64-simulator/MyMergeableFramework.framework/Headers/MyMergeableFramework-Swift.h -------------------------------------------------------------------------------- /Tests/Fixtures/MyMergeableFramework.xcframework/ios-x86_64-simulator/MyMergeableFramework.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyMergeableFramework.xcframework/ios-x86_64-simulator/MyMergeableFramework.framework/Info.plist -------------------------------------------------------------------------------- /Tests/Fixtures/MyMergeableFramework.xcframework/ios-x86_64-simulator/MyMergeableFramework.framework/Modules/MyMergeableFramework.swiftmodule/x86_64-apple-ios-simulator.abi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyMergeableFramework.xcframework/ios-x86_64-simulator/MyMergeableFramework.framework/Modules/MyMergeableFramework.swiftmodule/x86_64-apple-ios-simulator.abi.json -------------------------------------------------------------------------------- /Tests/Fixtures/MyMergeableFramework.xcframework/ios-x86_64-simulator/MyMergeableFramework.framework/Modules/MyMergeableFramework.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyMergeableFramework.xcframework/ios-x86_64-simulator/MyMergeableFramework.framework/Modules/MyMergeableFramework.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface -------------------------------------------------------------------------------- /Tests/Fixtures/MyMergeableFramework.xcframework/ios-x86_64-simulator/MyMergeableFramework.framework/Modules/MyMergeableFramework.swiftmodule/x86_64-apple-ios-simulator.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyMergeableFramework.xcframework/ios-x86_64-simulator/MyMergeableFramework.framework/Modules/MyMergeableFramework.swiftmodule/x86_64-apple-ios-simulator.swiftdoc -------------------------------------------------------------------------------- /Tests/Fixtures/MyMergeableFramework.xcframework/ios-x86_64-simulator/MyMergeableFramework.framework/Modules/MyMergeableFramework.swiftmodule/x86_64-apple-ios-simulator.swiftinterface: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyMergeableFramework.xcframework/ios-x86_64-simulator/MyMergeableFramework.framework/Modules/MyMergeableFramework.swiftmodule/x86_64-apple-ios-simulator.swiftinterface -------------------------------------------------------------------------------- /Tests/Fixtures/MyMergeableFramework.xcframework/ios-x86_64-simulator/MyMergeableFramework.framework/Modules/MyMergeableFramework.swiftmodule/x86_64-apple-ios-simulator.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyMergeableFramework.xcframework/ios-x86_64-simulator/MyMergeableFramework.framework/Modules/MyMergeableFramework.swiftmodule/x86_64-apple-ios-simulator.swiftmodule -------------------------------------------------------------------------------- /Tests/Fixtures/MyMergeableFramework.xcframework/ios-x86_64-simulator/MyMergeableFramework.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyMergeableFramework.xcframework/ios-x86_64-simulator/MyMergeableFramework.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Tests/Fixtures/MyMergeableFramework.xcframework/ios-x86_64-simulator/MyMergeableFramework.framework/MyMergeableFramework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyMergeableFramework.xcframework/ios-x86_64-simulator/MyMergeableFramework.framework/MyMergeableFramework -------------------------------------------------------------------------------- /Tests/Fixtures/MyMergeableFramework.xcframework/ios-x86_64-simulator/MyMergeableFramework.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyMergeableFramework.xcframework/ios-x86_64-simulator/MyMergeableFramework.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /Tests/Fixtures/MyStaticLibrary.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyStaticLibrary.xcframework/Info.plist -------------------------------------------------------------------------------- /Tests/Fixtures/MyStaticLibrary.xcframework/ios-arm64/libMyStaticLibrary.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyStaticLibrary.xcframework/ios-arm64/libMyStaticLibrary.a -------------------------------------------------------------------------------- /Tests/Fixtures/MyStaticLibrary.xcframework/ios-x86_64-simulator/libMyStaticLibrary.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/MyStaticLibrary.xcframework/ios-x86_64-simulator/libMyStaticLibrary.a -------------------------------------------------------------------------------- /Tests/Fixtures/libStaticLibrary.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/libStaticLibrary.a -------------------------------------------------------------------------------- /Tests/Fixtures/xpm.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/xpm.framework.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /Tests/Fixtures/xpm.framework.dSYM/Contents/Resources/DWARF/xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/xpm.framework.dSYM/Contents/Resources/DWARF/xpm -------------------------------------------------------------------------------- /Tests/Fixtures/xpm.framework/Headers/xpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/xpm.framework/Headers/xpm.h -------------------------------------------------------------------------------- /Tests/Fixtures/xpm.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/xpm.framework/Info.plist -------------------------------------------------------------------------------- /Tests/Fixtures/xpm.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/xpm.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Tests/Fixtures/xpm.framework/PrivateHeaders/private.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/Fixtures/xpm.framework/xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/Fixtures/xpm.framework/xpm -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/MapperTests/Graph/XcodeGraphMapperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/MapperTests/Graph/XcodeGraphMapperTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/MapperTests/Package/PackageMapperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/MapperTests/Package/PackageMapperTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/MapperTests/Package/XCPackageMapperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/MapperTests/Package/XCPackageMapperTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/MapperTests/Phases/PBXCopyFilesBuildPhaseMapperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/MapperTests/Phases/PBXCopyFilesBuildPhaseMapperTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/MapperTests/Phases/PBXCoreDataModelsBuildPhaseMapperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/MapperTests/Phases/PBXCoreDataModelsBuildPhaseMapperTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/MapperTests/Phases/PBXFrameworksBuildPhaseMapperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/MapperTests/Phases/PBXFrameworksBuildPhaseMapperTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/MapperTests/Phases/PBXHeadersBuildPhaseMapperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/MapperTests/Phases/PBXHeadersBuildPhaseMapperTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/MapperTests/Phases/PBXResourcesBuildPhaseMapperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/MapperTests/Phases/PBXResourcesBuildPhaseMapperTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/MapperTests/Phases/PBXScriptsBuildPhaseMapperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/MapperTests/Phases/PBXScriptsBuildPhaseMapperTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/MapperTests/Phases/PBXSourcesBuildPhaseMapperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/MapperTests/Phases/PBXSourcesBuildPhaseMapperTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/MapperTests/Project/PBXProjectMapperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/MapperTests/Project/PBXProjectMapperTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/MapperTests/Schemes/XCSchemeMapperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/MapperTests/Schemes/XCSchemeMapperTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/MapperTests/Settings/ConfigurationMatcherTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/MapperTests/Settings/ConfigurationMatcherTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/MapperTests/Settings/XCConfigurationMapperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/MapperTests/Settings/XCConfigurationMapperTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/MapperTests/Target/PBXBuildRuleMapperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/MapperTests/Target/PBXBuildRuleMapperTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/MapperTests/Target/PBXTargetDependencyMapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/MapperTests/Target/PBXTargetDependencyMapper.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/MapperTests/Target/PBXTargetMapperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/MapperTests/Target/PBXTargetMapperTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/MapperTests/Target/TargetDependencyExtensionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/MapperTests/Target/TargetDependencyExtensionsTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/MapperTests/Workspace/XCWorkspaceMapperTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/MapperTests/Workspace/XCWorkspaceMapperTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/Mocks/AssertionsTesting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/Mocks/AssertionsTesting.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/Mocks/MockDefaults.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/Mocks/MockDefaults.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/TestData/.swift: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/TestData/PBXBuildRule+TestData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/TestData/PBXBuildRule+TestData.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/TestData/PBXFileReference+TestData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/TestData/PBXFileReference+TestData.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/TestData/PBXGroup+TestData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/TestData/PBXGroup+TestData.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/TestData/PBXNativeTarget+TestData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/TestData/PBXNativeTarget+TestData.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/TestData/PBXProj+TestData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/TestData/PBXProj+TestData.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/TestData/PBXProject+TestData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/TestData/PBXProject+TestData.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/TestData/PBXShellScriptBuildPhase+TestData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/TestData/PBXShellScriptBuildPhase+TestData.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/TestData/PBXTargetDependency+TestData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/TestData/PBXTargetDependency+TestData.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/TestData/PBXVariantGroup+TestData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/TestData/PBXVariantGroup+TestData.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/TestData/XCBuildConfiguration+TestData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/TestData/XCBuildConfiguration+TestData.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/TestData/XCConfigurationList+TestData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/TestData/XCConfigurationList+TestData.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/TestData/XCScheme+TestData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/TestData/XCScheme+TestData.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/TestData/XCSchemeTestableReference+TestData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/TestData/XCSchemeTestableReference+TestData.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/TestData/XCUserData+TestData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/TestData/XCUserData+TestData.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/TestData/XCVersionGroup+TestData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/TestData/XCVersionGroup+TestData.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/TestData/XCWorkspace+TestData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/TestData/XCWorkspace+TestData.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/TestData/XCWorkspaceDataElement+TestData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/TestData/XCWorkspaceDataElement+TestData.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/TestData/XCWorkspaceDataGroup+TestData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/TestData/XCWorkspaceDataGroup+TestData.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphMapperTests/TestData/XcodeProj+TestData.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphMapperTests/TestData/XcodeProj+TestData.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/DependenciesGraph/DependenciesGraphTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/DependenciesGraph/DependenciesGraphTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Extensions/SettingsDictionary+ExtrasTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Extensions/SettingsDictionary+ExtrasTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Extensions/XCTestCase+Extras.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Extensions/XCTestCase+Extras.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Graph/GraphDependencyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Graph/GraphDependencyTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Graph/GraphTargetTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Graph/GraphTargetTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Graph/GraphTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Graph/GraphTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/AnalyzeActionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/AnalyzeActionTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/ArchiveActionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/ArchiveActionTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/ArgumentsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/ArgumentsTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/BinaryArchitectureTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/BinaryArchitectureTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/BuildActionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/BuildActionTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/BuildConfigurationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/BuildConfigurationTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/BuildRule.CompilerSpecTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/BuildRule.CompilerSpecTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/BuildRule.FileTypeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/BuildRule.FileTypeTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/BuildRuleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/BuildRuleTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/CompatibleXcodeVersionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/CompatibleXcodeVersionsTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/CopyFileElementTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/CopyFileElementTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/CopyFilesActionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/CopyFilesActionTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/CoreDataModelTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/CoreDataModelTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/ExecutionActionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/ExecutionActionTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/FileElementTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/FileElementTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/HeadersTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/HeadersTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/IDETemplateMacrosTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/IDETemplateMacrosTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/InfoPlistTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/InfoPlistTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/PackageInfoTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/PackageInfoTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/PackageTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/PackageTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/PlatformFilterTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/PlatformFilterTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/PlatformTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/PlatformTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/ProductTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/ProductTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/ProfileActionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/ProfileActionTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/ProjectGroupTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/ProjectGroupTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/ProjectTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/ProjectTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/RawScriptBuildPhaseTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/RawScriptBuildPhaseTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/RequirementTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/RequirementTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/ResourceFileElementTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/ResourceFileElementTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/ResourceSynthesizerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/ResourceSynthesizerTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/RunActionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/RunActionTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/SDKSourceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/SDKSourceTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/SchemeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/SchemeTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/SettingsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/SettingsTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/SourceFileTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/SourceFileTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/TargetDependencyTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/TargetDependencyTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/TargetReferenceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/TargetReferenceTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/TargetScriptTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/TargetScriptTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/TargetTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/TargetTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/TestActionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/TestActionTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/TestPlanTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/TestPlanTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/TestableTargetTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/TestableTargetTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/VersionTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/VersionTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/WorkspaceGenerationOptionsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/WorkspaceGenerationOptionsTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/WorkspaceTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/WorkspaceTests.swift -------------------------------------------------------------------------------- /Tests/XcodeGraphTests/Models/XCFrameworkInfoPlistTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeGraphTests/Models/XCFrameworkInfoPlistTests.swift -------------------------------------------------------------------------------- /Tests/XcodeMetadataTests/AssertionsTesting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeMetadataTests/AssertionsTesting.swift -------------------------------------------------------------------------------- /Tests/XcodeMetadataTests/FrameworkMetadataProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeMetadataTests/FrameworkMetadataProviderTests.swift -------------------------------------------------------------------------------- /Tests/XcodeMetadataTests/LibraryMetadataProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeMetadataTests/LibraryMetadataProviderTests.swift -------------------------------------------------------------------------------- /Tests/XcodeMetadataTests/PrecompiledMetadataProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeMetadataTests/PrecompiledMetadataProviderTests.swift -------------------------------------------------------------------------------- /Tests/XcodeMetadataTests/SystemFrameworkMetadataProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeMetadataTests/SystemFrameworkMetadataProviderTests.swift -------------------------------------------------------------------------------- /Tests/XcodeMetadataTests/XCFrameworkMetadataProviderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/Tests/XcodeMetadataTests/XCFrameworkMetadataProviderTests.swift -------------------------------------------------------------------------------- /cliff.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/cliff.toml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tuist/XcodeGraph/HEAD/renovate.json --------------------------------------------------------------------------------