CLI 4.195.16 fixes two project-generation edge cases.
Reliable framework search paths on regeneration
Projects with many precompiled framework dependencies could fail to build after tuist generate ran over an existing Derived/ directory, typically on CI. The cleanup phase removed the framework search path response files after they were written, causing missing-file errors. This version generates those response files during graph mapping, after the cleanup recreates the Derived/ directory, so regenerations no longer delete the files your build depends on.
Correct handling of foreign build aggregate targets
Foreign build aggregate targets now generate as script-only aggregates with project-level versioning stripped out. Previously, they inherited native target behavior when the project set VERSIONING_SYSTEM=apple-generic, which caused duplicate-output errors during Xcode builds. This change lets foreign-build dependencies build cleanly.