├── .action ├── artifact │ ├── README.md │ ├── lib │ │ ├── __mocks__ │ │ │ └── internal-config-variables.js │ │ ├── artifact-client.js │ │ ├── internal-artifact-client.js │ │ ├── internal-config-variables.js │ │ ├── internal-contracts.js │ │ ├── internal-download-http-client.js │ │ ├── internal-download-options.js │ │ ├── internal-download-response.js │ │ ├── internal-download-specification.js │ │ ├── internal-upload-http-client.js │ │ ├── internal-upload-options.js │ │ ├── internal-upload-response.js │ │ ├── internal-upload-specification.js │ │ ├── internal-utils.js │ │ └── internal │ │ │ ├── __mocks__ │ │ │ └── config-variables.js │ │ │ ├── artifact-client.js │ │ │ ├── config-variables.js │ │ │ ├── contracts.js │ │ │ ├── download-http-client.js │ │ │ ├── download-options.js │ │ │ ├── download-response.js │ │ │ ├── download-specification.js │ │ │ ├── http-manager.js │ │ │ ├── status-reporter.js │ │ │ ├── upload-gzip.js │ │ │ ├── upload-http-client.js │ │ │ ├── upload-options.js │ │ │ ├── upload-response.js │ │ │ ├── upload-specification.js │ │ │ └── utils.js │ └── package.json ├── core │ ├── README.md │ ├── lib │ │ ├── command.js │ │ └── core.js │ └── package.json ├── exec │ ├── README.md │ ├── lib │ │ ├── exec.js │ │ ├── interfaces.js │ │ └── toolrunner.js │ └── package.json ├── http-client │ ├── LICENSE │ ├── README.md │ ├── RELEASES.md │ ├── actions.png │ ├── auth.js │ ├── index.js │ ├── interfaces.js │ ├── package.json │ └── proxy.js ├── io │ ├── README.md │ ├── lib │ │ ├── io-util.js │ │ └── io.js │ └── package.json ├── rimraf │ ├── LICENSE │ ├── README.md │ ├── bin.js │ ├── package.json │ └── rimraf.js ├── tmp-promise │ ├── .circleci │ │ └── config.yml │ ├── README.md │ ├── example-usage.js │ ├── index.js │ ├── package.json │ └── test.js └── tmp │ ├── LICENSE │ ├── README.md │ ├── lib │ └── tmp.js │ └── package.json ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.md │ └── FEATURE_REQUEST.md ├── PULL_REQUEST_TEMPLATE │ └── NEW.md ├── release-drafter.yml └── workflows │ ├── draft-release.yml │ ├── stale-issues.yml │ ├── swiftlint.yml │ └── tests.yml ├── .gitignore ├── .swiftlint.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── Package.resolved ├── Package.swift ├── README.md ├── Sources ├── CreateXCFramework │ ├── BuildSetting.swift │ ├── Command+Options.swift │ ├── Command.swift │ ├── Extensions │ │ ├── Collection+Extensions.swift │ │ ├── PackageModel+Extensions.swift │ │ └── Xcodeproj+ProductValidation.swift │ ├── PackageInfo.swift │ ├── Platforms.swift │ ├── ProjectGenerator.swift │ ├── XcodeBuildAction.swift │ ├── XcodeBuilder.swift │ ├── Zipper.swift │ └── main.swift └── Xcodeproj │ ├── CMakeLists.txt │ ├── PropertyList.swift │ ├── SchemesGenerator.swift │ ├── TODO.md │ ├── Target+PBXProj.swift │ ├── XcodeProjectModel.swift │ ├── XcodeProjectModelSerialization.swift │ ├── generate.swift │ └── pbxproj.swift ├── Tests ├── CreateXCFrameworkTests │ ├── XCTestManifests.swift │ └── swift_create_frameworkTests.swift └── LinuxMain.swift ├── action.js └── action.yml /.action/artifact/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/README.md -------------------------------------------------------------------------------- /.action/artifact/lib/__mocks__/internal-config-variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/__mocks__/internal-config-variables.js -------------------------------------------------------------------------------- /.action/artifact/lib/artifact-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/artifact-client.js -------------------------------------------------------------------------------- /.action/artifact/lib/internal-artifact-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/internal-artifact-client.js -------------------------------------------------------------------------------- /.action/artifact/lib/internal-config-variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/internal-config-variables.js -------------------------------------------------------------------------------- /.action/artifact/lib/internal-contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/internal-contracts.js -------------------------------------------------------------------------------- /.action/artifact/lib/internal-download-http-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/internal-download-http-client.js -------------------------------------------------------------------------------- /.action/artifact/lib/internal-download-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/internal-download-options.js -------------------------------------------------------------------------------- /.action/artifact/lib/internal-download-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/internal-download-response.js -------------------------------------------------------------------------------- /.action/artifact/lib/internal-download-specification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/internal-download-specification.js -------------------------------------------------------------------------------- /.action/artifact/lib/internal-upload-http-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/internal-upload-http-client.js -------------------------------------------------------------------------------- /.action/artifact/lib/internal-upload-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/internal-upload-options.js -------------------------------------------------------------------------------- /.action/artifact/lib/internal-upload-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/internal-upload-response.js -------------------------------------------------------------------------------- /.action/artifact/lib/internal-upload-specification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/internal-upload-specification.js -------------------------------------------------------------------------------- /.action/artifact/lib/internal-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/internal-utils.js -------------------------------------------------------------------------------- /.action/artifact/lib/internal/__mocks__/config-variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/internal/__mocks__/config-variables.js -------------------------------------------------------------------------------- /.action/artifact/lib/internal/artifact-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/internal/artifact-client.js -------------------------------------------------------------------------------- /.action/artifact/lib/internal/config-variables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/internal/config-variables.js -------------------------------------------------------------------------------- /.action/artifact/lib/internal/contracts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/internal/contracts.js -------------------------------------------------------------------------------- /.action/artifact/lib/internal/download-http-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/internal/download-http-client.js -------------------------------------------------------------------------------- /.action/artifact/lib/internal/download-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/internal/download-options.js -------------------------------------------------------------------------------- /.action/artifact/lib/internal/download-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/internal/download-response.js -------------------------------------------------------------------------------- /.action/artifact/lib/internal/download-specification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/internal/download-specification.js -------------------------------------------------------------------------------- /.action/artifact/lib/internal/http-manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/internal/http-manager.js -------------------------------------------------------------------------------- /.action/artifact/lib/internal/status-reporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/internal/status-reporter.js -------------------------------------------------------------------------------- /.action/artifact/lib/internal/upload-gzip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/internal/upload-gzip.js -------------------------------------------------------------------------------- /.action/artifact/lib/internal/upload-http-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/internal/upload-http-client.js -------------------------------------------------------------------------------- /.action/artifact/lib/internal/upload-options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/internal/upload-options.js -------------------------------------------------------------------------------- /.action/artifact/lib/internal/upload-response.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/internal/upload-response.js -------------------------------------------------------------------------------- /.action/artifact/lib/internal/upload-specification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/internal/upload-specification.js -------------------------------------------------------------------------------- /.action/artifact/lib/internal/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/lib/internal/utils.js -------------------------------------------------------------------------------- /.action/artifact/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/artifact/package.json -------------------------------------------------------------------------------- /.action/core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/core/README.md -------------------------------------------------------------------------------- /.action/core/lib/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/core/lib/command.js -------------------------------------------------------------------------------- /.action/core/lib/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/core/lib/core.js -------------------------------------------------------------------------------- /.action/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/core/package.json -------------------------------------------------------------------------------- /.action/exec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/exec/README.md -------------------------------------------------------------------------------- /.action/exec/lib/exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/exec/lib/exec.js -------------------------------------------------------------------------------- /.action/exec/lib/interfaces.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/exec/lib/interfaces.js -------------------------------------------------------------------------------- /.action/exec/lib/toolrunner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/exec/lib/toolrunner.js -------------------------------------------------------------------------------- /.action/exec/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/exec/package.json -------------------------------------------------------------------------------- /.action/http-client/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/http-client/LICENSE -------------------------------------------------------------------------------- /.action/http-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/http-client/README.md -------------------------------------------------------------------------------- /.action/http-client/RELEASES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/http-client/RELEASES.md -------------------------------------------------------------------------------- /.action/http-client/actions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/http-client/actions.png -------------------------------------------------------------------------------- /.action/http-client/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/http-client/auth.js -------------------------------------------------------------------------------- /.action/http-client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/http-client/index.js -------------------------------------------------------------------------------- /.action/http-client/interfaces.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /.action/http-client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/http-client/package.json -------------------------------------------------------------------------------- /.action/http-client/proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/http-client/proxy.js -------------------------------------------------------------------------------- /.action/io/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/io/README.md -------------------------------------------------------------------------------- /.action/io/lib/io-util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/io/lib/io-util.js -------------------------------------------------------------------------------- /.action/io/lib/io.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/io/lib/io.js -------------------------------------------------------------------------------- /.action/io/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/io/package.json -------------------------------------------------------------------------------- /.action/rimraf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/rimraf/LICENSE -------------------------------------------------------------------------------- /.action/rimraf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/rimraf/README.md -------------------------------------------------------------------------------- /.action/rimraf/bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/rimraf/bin.js -------------------------------------------------------------------------------- /.action/rimraf/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/rimraf/package.json -------------------------------------------------------------------------------- /.action/rimraf/rimraf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/rimraf/rimraf.js -------------------------------------------------------------------------------- /.action/tmp-promise/.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/tmp-promise/.circleci/config.yml -------------------------------------------------------------------------------- /.action/tmp-promise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/tmp-promise/README.md -------------------------------------------------------------------------------- /.action/tmp-promise/example-usage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/tmp-promise/example-usage.js -------------------------------------------------------------------------------- /.action/tmp-promise/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/tmp-promise/index.js -------------------------------------------------------------------------------- /.action/tmp-promise/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/tmp-promise/package.json -------------------------------------------------------------------------------- /.action/tmp-promise/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/tmp-promise/test.js -------------------------------------------------------------------------------- /.action/tmp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/tmp/LICENSE -------------------------------------------------------------------------------- /.action/tmp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/tmp/README.md -------------------------------------------------------------------------------- /.action/tmp/lib/tmp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/tmp/lib/tmp.js -------------------------------------------------------------------------------- /.action/tmp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.action/tmp/package.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | .action/* linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/NEW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.github/PULL_REQUEST_TEMPLATE/NEW.md -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/draft-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.github/workflows/draft-release.yml -------------------------------------------------------------------------------- /.github/workflows/stale-issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.github/workflows/stale-issues.yml -------------------------------------------------------------------------------- /.github/workflows/swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.github/workflows/swiftlint.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/Makefile -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/README.md -------------------------------------------------------------------------------- /Sources/CreateXCFramework/BuildSetting.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/Sources/CreateXCFramework/BuildSetting.swift -------------------------------------------------------------------------------- /Sources/CreateXCFramework/Command+Options.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/Sources/CreateXCFramework/Command+Options.swift -------------------------------------------------------------------------------- /Sources/CreateXCFramework/Command.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/Sources/CreateXCFramework/Command.swift -------------------------------------------------------------------------------- /Sources/CreateXCFramework/Extensions/Collection+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/Sources/CreateXCFramework/Extensions/Collection+Extensions.swift -------------------------------------------------------------------------------- /Sources/CreateXCFramework/Extensions/PackageModel+Extensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/Sources/CreateXCFramework/Extensions/PackageModel+Extensions.swift -------------------------------------------------------------------------------- /Sources/CreateXCFramework/Extensions/Xcodeproj+ProductValidation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/Sources/CreateXCFramework/Extensions/Xcodeproj+ProductValidation.swift -------------------------------------------------------------------------------- /Sources/CreateXCFramework/PackageInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/Sources/CreateXCFramework/PackageInfo.swift -------------------------------------------------------------------------------- /Sources/CreateXCFramework/Platforms.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/Sources/CreateXCFramework/Platforms.swift -------------------------------------------------------------------------------- /Sources/CreateXCFramework/ProjectGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/Sources/CreateXCFramework/ProjectGenerator.swift -------------------------------------------------------------------------------- /Sources/CreateXCFramework/XcodeBuildAction.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/Sources/CreateXCFramework/XcodeBuildAction.swift -------------------------------------------------------------------------------- /Sources/CreateXCFramework/XcodeBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/Sources/CreateXCFramework/XcodeBuilder.swift -------------------------------------------------------------------------------- /Sources/CreateXCFramework/Zipper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/Sources/CreateXCFramework/Zipper.swift -------------------------------------------------------------------------------- /Sources/CreateXCFramework/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/Sources/CreateXCFramework/main.swift -------------------------------------------------------------------------------- /Sources/Xcodeproj/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/Sources/Xcodeproj/CMakeLists.txt -------------------------------------------------------------------------------- /Sources/Xcodeproj/PropertyList.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/Sources/Xcodeproj/PropertyList.swift -------------------------------------------------------------------------------- /Sources/Xcodeproj/SchemesGenerator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/Sources/Xcodeproj/SchemesGenerator.swift -------------------------------------------------------------------------------- /Sources/Xcodeproj/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/Sources/Xcodeproj/TODO.md -------------------------------------------------------------------------------- /Sources/Xcodeproj/Target+PBXProj.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/Sources/Xcodeproj/Target+PBXProj.swift -------------------------------------------------------------------------------- /Sources/Xcodeproj/XcodeProjectModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/Sources/Xcodeproj/XcodeProjectModel.swift -------------------------------------------------------------------------------- /Sources/Xcodeproj/XcodeProjectModelSerialization.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/Sources/Xcodeproj/XcodeProjectModelSerialization.swift -------------------------------------------------------------------------------- /Sources/Xcodeproj/generate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/Sources/Xcodeproj/generate.swift -------------------------------------------------------------------------------- /Sources/Xcodeproj/pbxproj.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/Sources/Xcodeproj/pbxproj.swift -------------------------------------------------------------------------------- /Tests/CreateXCFrameworkTests/XCTestManifests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/Tests/CreateXCFrameworkTests/XCTestManifests.swift -------------------------------------------------------------------------------- /Tests/CreateXCFrameworkTests/swift_create_frameworkTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/Tests/CreateXCFrameworkTests/swift_create_frameworkTests.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/action.js -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segment-integrations/swift-create-xcframework/HEAD/action.yml --------------------------------------------------------------------------------