Skip to content

ENUM

BaseCacheProfile

Contents

  • Cases
    • onlyExternal
    • allPossible
    • none
swift
public enum BaseCacheProfile: String, Codable, Equatable, Sendable

Cases

onlyExternal

swift
case onlyExternal

Replace external dependencies only (system default)

allPossible

swift
case allPossible

Replace as many targets as possible (all internal targets), excluding focused targets

none

swift
case none

No binary replacement

Released under the MIT License.