Hello,
I'm currently implementing some DataProviders according to the ASP.NET Provider Model. Everything works fine, though the application directory is a mess due to all the assemblies containing the data providers and their dependencies.
Is it possible to put the assemblies containing the DataProviders in a subfolder? If yes, what do I have to change (in the app.config?) so that the assemblies will be found by the application?
This is my current entry in the app.config:
<CustomerProvider>
<providers>
<add name="SqlDataProvider" type="SqlDataProvider.SqlCustomerDataProvider, SqlDataProvider"/>
</providers>
</CustomerProvider>
Best regards, Michael