mirror of
https://github.com/yonaskolb/XcodeGen.git
synced 2026-03-18 20:02:25 +00:00
c32aa4cc94
* update xcodeproj to 8.27.7 * add syncedFolder source type * drop xcode 15 support * Rely on fileReference instead of adding new synchronizedRootGroup (#1557) * fix: don't include untracked children in cache --------- Co-authored-by: Kirill Yakimovich <kirill.yakimovich@gmail.com>
16 lines
188 B
Swift
16 lines
188 B
Swift
//
|
|
// File.swift
|
|
//
|
|
//
|
|
// Created by Yonas Kolb on 1/5/20.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public enum SourceType: String {
|
|
case group
|
|
case file
|
|
case folder
|
|
case syncedFolder
|
|
}
|