I know how to register assembly in the bootstrapper by override --> protected override void ConfigureContainer()
but i want to register it on configuration file
i add the unity section to the app.confg
<register type="namespace.Iinterface, assembly, Version=1.0.0.0, Culture=neutral"
mapTo="namespace.class,assembly">
<lifetime type="singleton" />
<constructor>
<param name="file" value="xml"/>
</constructor>
</register>
</container>
this class not register what I'm missing?