In the Current Rimworld Release MinifyEverything Appears to be incompatible with buildings that use fixedStorageSettings.
From my Research this appears to be caused by the game running fixedStorageSettings.filter.ResolveReferences(); before MinifyEverything adds the it's minified Defs.
The Vanilla Function Verse.ThingDef:ResolveReferences() calls building.ResolveReferencesSpecial(); if the ThingDef has BuildingProperties (building tag)
Within RimWorld.BuildingProperties:ResolveReferencesSpecial() fixedStorageSettings.filter.ResolveReferences(); gets called if fixedStorageSettings is not null
relates to zymex22/Project-RimFactory-Revived#730