The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of EFIconFont, reference 1.2.1 (9b7bdf), with Swift 6.0 for macOS (SPM) on 3 Nov 2024 09:29:42 UTC.

Swift 6 data race errors: 3

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/EFPrefix/EFIconFont.git
Reference: 1.2.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/EFPrefix/EFIconFont
 * tag               1.2.1      -> FETCH_HEAD
HEAD is now at 9b7bdfb 1.2.1
Cloned https://github.com/EFPrefix/EFIconFont.git
Revision (git rev-parse @):
9b7bdfb42fd43fbf7866509c387a2671f36c383a
SUCCESS checkout https://github.com/EFPrefix/EFIconFont.git at 1.2.1
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "dependencies": [
    {
      "identity": "eficonfont",
      "name": "EFIconFont",
      "url": "https://github.com/EFPrefix/EFIconFont.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/EFIconFont",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/EFPrefix/EFIconFont.git
[1/2022] Fetching eficonfont
Fetched https://github.com/EFPrefix/EFIconFont.git from cache (1.39s)
Creating working copy for https://github.com/EFPrefix/EFIconFont.git
Working copy of https://github.com/EFPrefix/EFIconFont.git resolved at 1.2.1 (9b7bdfb)
warning: '.resolve-product-dependencies': dependency 'eficonfont' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/EFPrefix/EFIconFont.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/36] Write sources
[35/36] Write swift-version--7754E27361AE5C74.txt
[37/41] Compiling EFIconFontCore EFIconFontProtocol.swift
/Users/admin/builder/spi-builder-workspace/EFIconFont/Classes/Core/EFIconFontProtocol.swift:38:16: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 | fileprivate struct AssociatedKeys {
 38 |     static var attributes = "attributes"
    |                |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 | }
 40 |
/Users/admin/builder/spi-builder-workspace/EFIconFont/Classes/Core/EFIconFontProtocol.swift:73:64: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 71 |     var attributes: [NSAttributedString.Key : Any] {
 72 |         get {
 73 |             if let attributes = objc_getAssociatedObject(self, &AssociatedKeys.attributes) as? [NSAttributedString.Key : Any] {
    |                                                                `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 74 |                 return attributes
 75 |             }
/Users/admin/builder/spi-builder-workspace/EFIconFont/Classes/Core/EFIconFontProtocol.swift:77:44: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 75 |             }
 76 |             let newAttributes: [NSAttributedString.Key : Any] = [:]
 77 |             objc_setAssociatedObject(self, &AssociatedKeys.attributes, newAttributes, objc_AssociationPolicy.OBJC_ASSOCIATION_RETAIN_NONATOMIC)
    |                                            `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 78 |             return newAttributes
 79 |         }
/Users/admin/builder/spi-builder-workspace/EFIconFont/Classes/Core/EFIconFontProtocol.swift:81:44: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 79 |         }
 80 |         set {
 81 |             objc_setAssociatedObject(self, &AssociatedKeys.attributes, newValue, objc_AssociationPolicy.OBJC_ASSOCIATION_RETAIN_NONATOMIC)
    |                                            `- warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
 82 |         }
 83 |     }
[38/41] Compiling EFIconFontCore UIFont+EFIconFont.swift
[39/41] Emitting module EFIconFontCore
/Users/admin/builder/spi-builder-workspace/EFIconFont/Classes/Core/EFIconFontCaseIterableProtocol.swift:16:16: warning: static property 'dictionaryDictionaries' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 | fileprivate struct Anchor {
 16 |     static var dictionaryDictionaries: [String: [String : EFIconFontProtocol]] = [:]
    |                |- warning: static property 'dictionaryDictionaries' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'dictionaryDictionaries' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'dictionaryDictionaries' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 17 |     static var attributesDictionaries: [String: [NSAttributedString.Key : Any]] = [:]
 18 | }
/Users/admin/builder/spi-builder-workspace/EFIconFont/Classes/Core/EFIconFontCaseIterableProtocol.swift:17:16: warning: static property 'attributesDictionaries' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 15 | fileprivate struct Anchor {
 16 |     static var dictionaryDictionaries: [String: [String : EFIconFontProtocol]] = [:]
 17 |     static var attributesDictionaries: [String: [NSAttributedString.Key : Any]] = [:]
    |                |- warning: static property 'attributesDictionaries' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'attributesDictionaries' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'attributesDictionaries' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 | }
 19 |
/Users/admin/builder/spi-builder-workspace/EFIconFont/Classes/Core/EFIconFontProtocol.swift:38:16: warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 | fileprivate struct AssociatedKeys {
 38 |     static var attributes = "attributes"
    |                |- warning: static property 'attributes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'attributes' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'attributes' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 39 | }
 40 |
[40/41] Compiling EFIconFontCore EFIconFontCaseIterableProtocol.swift
/Users/admin/builder/spi-builder-workspace/EFIconFont/Classes/Core/EFIconFontCaseIterableProtocol.swift:16:16: warning: static property 'dictionaryDictionaries' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 14 |
 15 | fileprivate struct Anchor {
 16 |     static var dictionaryDictionaries: [String: [String : EFIconFontProtocol]] = [:]
    |                |- warning: static property 'dictionaryDictionaries' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'dictionaryDictionaries' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'dictionaryDictionaries' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 17 |     static var attributesDictionaries: [String: [NSAttributedString.Key : Any]] = [:]
 18 | }
/Users/admin/builder/spi-builder-workspace/EFIconFont/Classes/Core/EFIconFontCaseIterableProtocol.swift:17:16: warning: static property 'attributesDictionaries' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 15 | fileprivate struct Anchor {
 16 |     static var dictionaryDictionaries: [String: [String : EFIconFontProtocol]] = [:]
 17 |     static var attributesDictionaries: [String: [NSAttributedString.Key : Any]] = [:]
    |                |- warning: static property 'attributesDictionaries' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'attributesDictionaries' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'attributesDictionaries' with '@MainActor' if property should only be accessed from the main actor
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 | }
 19 |
[41/41] Compiling EFIconFontCore EFIconFont.swift
[42/61] Compiling EFIconFontStroke7 EFIconFontStroke7.swift
[43/61] Emitting module EFIconFontZocial
[44/61] Compiling EFIconFontZocial EFIconFontZocial.swift
[45/61] Emitting module EFIconFontVSCodeIcons
[46/61] Compiling EFIconFontVSCodeIcons EFIconFontVSCodeIcons.swift
[47/61] Emitting module EFIconFontStroke7
[48/67] Emitting module EFIconFontWeatherIcons
[49/67] Compiling EFIconFontWeatherIcons EFIconFontWeatherIcons.swift
[50/67] Compiling EFIconFontOpenIconic EFIconFontOpenIconic.swift
[51/67] Emitting module EFIconFontOpenIconic
[52/71] Emitting module EFIconFontTypicons
[53/71] Emitting module EFIconFontMeteocons
[54/71] Compiling EFIconFontMeteocons EFIconFontMeteocons.swift
[55/73] Compiling EFIconFontTypicons EFIconFontTypicons.swift
[56/73] Compiling EFIconFontThemifyIcons EFIconFontThemifyIcons.swift
[57/73] Emitting module EFIconFontThemifyIcons
[58/75] Emitting module EFIconFontStrawberryIcon
[59/75] Compiling EFIconFontStrawberryIcon EFIconFontStrawberryIcon.swift
[60/79] Compiling EFIconFontTaoBao EFIconFontTaoBao.swift
[61/79] Emitting module EFIconFontTaoBao
[62/81] Emitting module EFIconFontMetrizeIcons
[63/81] Compiling EFIconFontMetrizeIcons EFIconFontMetrizeIcons.swift
[64/83] Emitting module EFIconFontTmall
[65/83] Compiling EFIconFontTmall EFIconFontTmall.swift
[66/85] Compiling EFIconFontMapIcons EFIconFontMapIcons.swift
[67/85] Emitting module EFIconFontMapIcons
[68/85] Emitting module EFIconFontLigatureSymbols
[69/87] Compiling EFIconFontLigatureSymbols EFIconFontLigatureSymbols.swift
[70/89] Emitting module EFIconFontGenericonsNeue
[71/89] Compiling EFIconFontGenericonsNeue EFIconFontGenericonsNeue.swift
[72/91] Emitting module EFIconFontIcoMoon
[73/91] Compiling EFIconFontIcoMoon EFIconIcoMoon.swift
[74/91] Compiling EFIconFontFoundationIcons EFIconFontFoundationIcons.swift
[75/91] Emitting module EFIconFontFoundationIcons
[76/95] Compiling EFIconFontHawconsStroke EFIconFontHawconsStroke.swift
[77/95] Emitting module EFIconFontHawconsStroke
[78/97] Emitting module EFIconFontHawconsFilled
[79/97] Compiling EFIconFontHawconsFilled EFIconFontHawconsFilled.swift
[80/99] Emitting module EFIconFontEvilIcons
[81/99] Compiling EFIconFontFontAwesomeRegular EFIconFontFontAwesomeRegular.swift
[82/99] Emitting module EFIconFontFontAwesomeRegular
[83/99] Compiling EFIconFontEvilIcons EFIconFontEvilIcons.swift
[84/99] Emitting module EFIconFontIonicons
[85/99] Compiling EFIconFontIonicons EFIconFontIonicons.swift
[86/105] Emitting module EFIconFontEVAIcon
[87/105] Compiling EFIconFontEVAIcon EFIconFontEVAIcon.swift
[88/107] Compiling EFIconFontFontAwesomeBrands EFIconFontFontAwesomeBrands.swift
[89/107] Emitting module EFIconFontFontAwesomeBrands
[90/107] Emitting module EFIconFontElusiveIcons
[91/107] Compiling EFIconFontElusiveIcons EFIconFontElusiveIcons.swift
[92/109] Emitting module EFIconFontDevicons
[93/109] Compiling EFIconFontDevicons EFIconFontDevicons.swift
[94/109] Emitting module EFIconFontDashicons
[95/109] Compiling EFIconFontDashicons EFIconFontDashicons.swift
[96/109] Emitting module EFIconFontMaterialIconsSharp
[97/109] Compiling EFIconFontMaterialIconsSharp EFIconFontMaterialIconsSharp.swift
[98/109] Emitting module EFIconFontAliCloudConsole
[99/109] Compiling EFIconFontAliCloudConsole EFIconFontAliCloudConsole.swift
[100/109] Compiling EFIconFontMaterialIconsOutlined EFIconFontMaterialIconsOutlined.swift
[101/109] Emitting module EFIconFontMaterialIconsOutlined
[102/109] Compiling EFIconFontMaterialIconsRounded EFIconFontMaterialIconsRounded.swift
[103/109] Emitting module EFIconFontMaterialIconsRounded
[104/109] Emitting module EFIconFontMaterialIconsFilled
[105/109] Compiling EFIconFontMaterialIconsFilled EFIconFontMaterialIconsFilled.swift
[106/109] Emitting module EFIconFontFontAwesomeSolid
[107/109] Compiling EFIconFontFontAwesomeSolid EFIconFontFontAwesomeSolid.swift
[108/109] Emitting module EFIconFontAntDesign
[109/109] Compiling EFIconFontAntDesign EFIconFontAntDesign.swift
Build complete! (26.00s)
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/AliCloudConsole': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/AntDesign': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/Dashicons': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/Devicons': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/ElusiveIcons': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/EVAIcon': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/EvilIcons': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/FontAwesomeBrands': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/FontAwesomeRegular': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/FontAwesomeSolid': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/FoundationIcons': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/GenericonsNeue': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/HawconsFilled': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/HawconsStroke': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/IcoMoon': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/Ionicons': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/LigatureSymbols': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/MapIcons': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/MaterialIconsFilled': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/MaterialIconsOutlined': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/MaterialIconsRounded': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/MaterialIconsSharp': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/Meteocons': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/MetrizeIcons': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/OpenIconic': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/StrawberryIcon': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/Stroke7': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/TaoBao': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/ThemifyIcons': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/Tmall': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/Typicons': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/VSCodeIcons': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/WeatherIcons': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/Zocial': File not found.
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "EFIconFont",
  "name" : "EFIconFont",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "11.0"
    },
    {
      "name" : "macos",
      "version" : "10.13"
    },
    {
      "name" : "tvos",
      "version" : "11.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "EFIconFontCore",
      "targets" : [
        "EFIconFontCore"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontAliCloudConsole",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontAliCloudConsole"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontAntDesign",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontAntDesign"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontDashicons",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontDashicons"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontDevicons",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontDevicons"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontElusiveIcons",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontElusiveIcons"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontEVAIcon",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontEVAIcon"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontEvilIcons",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontEvilIcons"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontFontAwesomeBrands",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontFontAwesomeBrands"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontFontAwesomeRegular",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontFontAwesomeRegular"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontFontAwesomeSolid",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontFontAwesomeSolid"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontFoundationIcons",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontFoundationIcons"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontGenericonsNeue",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontGenericonsNeue"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontHawconsFilled",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontHawconsFilled"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontHawconsStroke",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontHawconsStroke"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontIcoMoon",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontIcoMoon"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontIonicons",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontIonicons"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontLigatureSymbols",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontLigatureSymbols"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontMapIcons",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontMapIcons"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontMaterialIconsFilled",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontMaterialIconsFilled"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontMaterialIconsOutlined",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontMaterialIconsOutlined"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontMaterialIconsRounded",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontMaterialIconsRounded"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontMaterialIconsSharp",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontMaterialIconsSharp"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontMeteocons",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontMeteocons"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontMetrizeIcons",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontMetrizeIcons"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontOpenIconic",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontOpenIconic"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontStrawberryIcon",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontStrawberryIcon"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontStroke7",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontStroke7"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontTaoBao",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontTaoBao"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontThemifyIcons",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontThemifyIcons"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontTmall",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontTmall"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontTypicons",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontTypicons"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontVSCodeIcons",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontVSCodeIcons"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontWeatherIcons",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontWeatherIcons"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontZocial",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontZocial"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "EFIconFontComplete",
      "targets" : [
        "EFIconFontCore",
        "EFIconFontAntDesign",
        "EFIconFontDashicons",
        "EFIconFontDevicons",
        "EFIconFontElusiveIcons",
        "EFIconFontEVAIcon",
        "EFIconFontEvilIcons",
        "EFIconFontFontAwesomeBrands",
        "EFIconFontFontAwesomeRegular",
        "EFIconFontFontAwesomeSolid",
        "EFIconFontFoundationIcons",
        "EFIconFontGenericonsNeue",
        "EFIconFontHawconsFilled",
        "EFIconFontHawconsStroke",
        "EFIconFontIcoMoon",
        "EFIconFontIonicons",
        "EFIconFontLigatureSymbols",
        "EFIconFontMapIcons",
        "EFIconFontMaterialIconsFilled",
        "EFIconFontMaterialIconsOutlined",
        "EFIconFontMaterialIconsRounded",
        "EFIconFontMaterialIconsSharp",
        "EFIconFontMeteocons",
        "EFIconFontMetrizeIcons",
        "EFIconFontOpenIconic",
        "EFIconFontStrawberryIcon",
        "EFIconFontStroke7",
        "EFIconFontTaoBao",
        "EFIconFontThemifyIcons",
        "EFIconFontTypicons",
        "EFIconFontVSCodeIcons",
        "EFIconFontWeatherIcons",
        "EFIconFontZocial"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "EFIconFontZocial",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontZocial",
      "path" : "EFIconFont/Classes/Zocial",
      "product_memberships" : [
        "EFIconFontZocial",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontZocial.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontWeatherIcons",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontWeatherIcons",
      "path" : "EFIconFont/Classes/WeatherIcons",
      "product_memberships" : [
        "EFIconFontWeatherIcons",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontWeatherIcons.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontVSCodeIcons",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontVSCodeIcons",
      "path" : "EFIconFont/Classes/VSCodeIcons",
      "product_memberships" : [
        "EFIconFontVSCodeIcons",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontVSCodeIcons.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontTypicons",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontTypicons",
      "path" : "EFIconFont/Classes/Typicons",
      "product_memberships" : [
        "EFIconFontTypicons",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontTypicons.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontTmall",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontTmall",
      "path" : "EFIconFont/Classes/Tmall",
      "product_memberships" : [
        "EFIconFontTmall"
      ],
      "sources" : [
        "EFIconFontTmall.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontThemifyIcons",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontThemifyIcons",
      "path" : "EFIconFont/Classes/ThemifyIcons",
      "product_memberships" : [
        "EFIconFontThemifyIcons",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontThemifyIcons.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontTaoBao",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontTaoBao",
      "path" : "EFIconFont/Classes/TaoBao",
      "product_memberships" : [
        "EFIconFontTaoBao",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontTaoBao.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontStroke7",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontStroke7",
      "path" : "EFIconFont/Classes/Stroke7",
      "product_memberships" : [
        "EFIconFontStroke7",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontStroke7.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontStrawberryIcon",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontStrawberryIcon",
      "path" : "EFIconFont/Classes/StrawberryIcon",
      "product_memberships" : [
        "EFIconFontStrawberryIcon",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontStrawberryIcon.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontOpenIconic",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontOpenIconic",
      "path" : "EFIconFont/Classes/OpenIconic",
      "product_memberships" : [
        "EFIconFontOpenIconic",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontOpenIconic.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontMetrizeIcons",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontMetrizeIcons",
      "path" : "EFIconFont/Classes/MetrizeIcons",
      "product_memberships" : [
        "EFIconFontMetrizeIcons",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontMetrizeIcons.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontMeteocons",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontMeteocons",
      "path" : "EFIconFont/Classes/Meteocons",
      "product_memberships" : [
        "EFIconFontMeteocons",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontMeteocons.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontMaterialIconsSharp",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontMaterialIconsSharp",
      "path" : "EFIconFont/Classes/MaterialIconsSharp",
      "product_memberships" : [
        "EFIconFontMaterialIconsSharp",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontMaterialIconsSharp.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontMaterialIconsRounded",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontMaterialIconsRounded",
      "path" : "EFIconFont/Classes/MaterialIconsRounded",
      "product_memberships" : [
        "EFIconFontMaterialIconsRounded",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontMaterialIconsRounded.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontMaterialIconsOutlined",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontMaterialIconsOutlined",
      "path" : "EFIconFont/Classes/MaterialIconsOutlined",
      "product_memberships" : [
        "EFIconFontMaterialIconsOutlined",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontMaterialIconsOutlined.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontMaterialIconsFilled",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontMaterialIconsFilled",
      "path" : "EFIconFont/Classes/MaterialIconsFilled",
      "product_memberships" : [
        "EFIconFontMaterialIconsFilled",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontMaterialIconsFilled.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontMapIcons",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontMapIcons",
      "path" : "EFIconFont/Classes/MapIcons",
      "product_memberships" : [
        "EFIconFontMapIcons",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontMapIcons.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontLigatureSymbols",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontLigatureSymbols",
      "path" : "EFIconFont/Classes/LigatureSymbols",
      "product_memberships" : [
        "EFIconFontLigatureSymbols",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontLigatureSymbols.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontIonicons",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontIonicons",
      "path" : "EFIconFont/Classes/Ionicons",
      "product_memberships" : [
        "EFIconFontIonicons",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontIonicons.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontIcoMoon",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontIcoMoon",
      "path" : "EFIconFont/Classes/IcoMoon",
      "product_memberships" : [
        "EFIconFontIcoMoon",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconIcoMoon.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontHawconsStroke",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontHawconsStroke",
      "path" : "EFIconFont/Classes/HawconsStroke",
      "product_memberships" : [
        "EFIconFontHawconsStroke",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontHawconsStroke.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontHawconsFilled",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontHawconsFilled",
      "path" : "EFIconFont/Classes/HawconsFilled",
      "product_memberships" : [
        "EFIconFontHawconsFilled",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontHawconsFilled.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontGenericonsNeue",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontGenericonsNeue",
      "path" : "EFIconFont/Classes/GenericonsNeue",
      "product_memberships" : [
        "EFIconFontGenericonsNeue",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontGenericonsNeue.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontFoundationIcons",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontFoundationIcons",
      "path" : "EFIconFont/Classes/FoundationIcons",
      "product_memberships" : [
        "EFIconFontFoundationIcons",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontFoundationIcons.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontFontAwesomeSolid",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontFontAwesomeSolid",
      "path" : "EFIconFont/Classes/FontAwesomeSolid",
      "product_memberships" : [
        "EFIconFontFontAwesomeSolid",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontFontAwesomeSolid.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontFontAwesomeRegular",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontFontAwesomeRegular",
      "path" : "EFIconFont/Classes/FontAwesomeRegular",
      "product_memberships" : [
        "EFIconFontFontAwesomeRegular",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontFontAwesomeRegular.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontFontAwesomeBrands",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontFontAwesomeBrands",
      "path" : "EFIconFont/Classes/FontAwesomeBrands",
      "product_memberships" : [
        "EFIconFontFontAwesomeBrands",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontFontAwesomeBrands.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontEvilIcons",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontEvilIcons",
      "path" : "EFIconFont/Classes/EvilIcons",
      "product_memberships" : [
        "EFIconFontEvilIcons",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontEvilIcons.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontElusiveIcons",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontElusiveIcons",
      "path" : "EFIconFont/Classes/ElusiveIcons",
      "product_memberships" : [
        "EFIconFontElusiveIcons",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontElusiveIcons.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontEVAIcon",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontEVAIcon",
      "path" : "EFIconFont/Classes/EVAIcon",
      "product_memberships" : [
        "EFIconFontEVAIcon",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontEVAIcon.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontDevicons",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontDevicons",
      "path" : "EFIconFont/Classes/Devicons",
      "product_memberships" : [
        "EFIconFontDevicons",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontDevicons.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontDashicons",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontDashicons",
      "path" : "EFIconFont/Classes/Dashicons",
      "product_memberships" : [
        "EFIconFontDashicons",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontDashicons.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontCore",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontCore",
      "path" : "EFIconFont/Classes/Core",
      "product_memberships" : [
        "EFIconFontCore",
        "EFIconFontAliCloudConsole",
        "EFIconFontAntDesign",
        "EFIconFontDashicons",
        "EFIconFontDevicons",
        "EFIconFontElusiveIcons",
        "EFIconFontEVAIcon",
        "EFIconFontEvilIcons",
        "EFIconFontFontAwesomeBrands",
        "EFIconFontFontAwesomeRegular",
        "EFIconFontFontAwesomeSolid",
        "EFIconFontFoundationIcons",
        "EFIconFontGenericonsNeue",
        "EFIconFontHawconsFilled",
        "EFIconFontHawconsStroke",
        "EFIconFontIcoMoon",
        "EFIconFontIonicons",
        "EFIconFontLigatureSymbols",
        "EFIconFontMapIcons",
        "EFIconFontMaterialIconsFilled",
        "EFIconFontMaterialIconsOutlined",
        "EFIconFontMaterialIconsRounded",
        "EFIconFontMaterialIconsSharp",
        "EFIconFontMeteocons",
        "EFIconFontMetrizeIcons",
        "EFIconFontOpenIconic",
        "EFIconFontStrawberryIcon",
        "EFIconFontStroke7",
        "EFIconFontTaoBao",
        "EFIconFontThemifyIcons",
        "EFIconFontTmall",
        "EFIconFontTypicons",
        "EFIconFontVSCodeIcons",
        "EFIconFontWeatherIcons",
        "EFIconFontZocial",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFont.swift",
        "EFIconFontCaseIterableProtocol.swift",
        "EFIconFontProtocol.swift",
        "UIFont+EFIconFont.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontAntDesign",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontAntDesign",
      "path" : "EFIconFont/Classes/AntDesign",
      "product_memberships" : [
        "EFIconFontAntDesign",
        "EFIconFontComplete"
      ],
      "sources" : [
        "EFIconFontAntDesign.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EFIconFontAliCloudConsole",
      "module_type" : "SwiftTarget",
      "name" : "EFIconFontAliCloudConsole",
      "path" : "EFIconFont/Classes/AliCloudConsole",
      "product_memberships" : [
        "EFIconFontAliCloudConsole"
      ],
      "sources" : [
        "EFIconFontAliCloudConsole.swift"
      ],
      "target_dependencies" : [
        "EFIconFontCore"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/AliCloudConsole': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/AntDesign': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/Dashicons': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/Devicons': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/ElusiveIcons': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/EVAIcon': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/EvilIcons': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/FontAwesomeBrands': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/FontAwesomeRegular': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/FontAwesomeSolid': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/FoundationIcons': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/GenericonsNeue': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/HawconsFilled': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/HawconsStroke': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/IcoMoon': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/Ionicons': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/LigatureSymbols': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/MapIcons': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/MaterialIconsFilled': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/MaterialIconsOutlined': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/MaterialIconsRounded': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/MaterialIconsSharp': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/Meteocons': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/MetrizeIcons': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/OpenIconic': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/StrawberryIcon': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/Stroke7': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/TaoBao': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/ThemifyIcons': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/Tmall': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/Typicons': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/VSCodeIcons': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/WeatherIcons': File not found.
warning: 'spi-builder-workspace': Invalid Resource 'EFIconFont/Assets/Zocial': File not found.
Done.