rafalszemraj / fabrication

Automatically exported from code.google.com/p/fabrication
2 stars 1 forks source link

7.5.5 source and swc are missing addDependenciesProvider in SimpleFabricationCommand #19

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
7.5.5 is missing addDependenciesProvider in SimpleFabricationCommand

Original issue reported on code.google.com by a.mikhai...@gmail.com on 22 Sep 2010 at 7:24

GoogleCodeExporter commented 9 years ago
Hi a.mikhailau.

Method "addDependenciesProvider" is removed from SimpleFabricationCommand.
If you whant using dependencies providers you must override property 
"dependencyProviders":

<fabrication:FlexApplication>
      <fx:Script>
      <![CDATA[
        override public function get dependencyProviders():Array
        {
            return [MyProvider];
        }
        ]]></fx:Script>
</fabrication:FlexApplication> 

Original comment by PiotrZarzycki21@gmail.com on 23 Sep 2010 at 2:33