Skip to content

번역 🌍

이 페이지를 번역하거나 기존 번역을 개선할 수 있습니다.

기여

Xcode 패키지 통합을 사용하여 생성된 프로젝트

Xcode의 기본 패키지 통합을 Tuist 프로젝트와 사용하는 경우 패키지를 추가할 때 URL 대신 레지스트리

식별자를 사용해야 합니다:

swift
import ProjectDescription

let project = Project(
    name: "MyProject",
    packages: [
        // Source control resolution
        // .package(url: "https://github.com/pointfreeco/swift-composable-architecture", from: "0.1.0")
        // Registry resolution
        .package(id: "pointfreeco.swift-composable-architecture", from: "0.1.0")
    ],
    targets: [
        .target(
            name: "App",
            product: .app,
            bundleId: "dev.tuist.App",
            dependencies: [
                .package(product: "ComposableArchitecture"),
            ]
        )
    ]
)

Released under the MIT License.