Skip to content

翻訳 🌍

このページの翻訳を行ったり、改善したりすることができます。

コントリビュートする

ENUM

CacheProfileType

Contents

  • Cases
    • onlyExternal
    • allPossible
    • none
    • custom(_:)
swift
public enum CacheProfileType: Codable, Equatable, Sendable

Cache profile type.

Cases

onlyExternal

swift
case onlyExternal

Replace external dependencies only (system default)

allPossible

swift
case allPossible

Replace as many targets as possible with cached binaries

none

swift
case none

No binary replacement, build everything from source

custom(_:)

swift
case custom(String)

Use named custom profile from profiles dictionary

Released under the MIT License.