13
If you install an extension and the assembly version is newer than the one used in the base app, if you run Repair-NavApp, the base application captures the newest version and applies that. In our case, that ended up breaking the Export in Excel function that uses Assembly version 2.9 by default, and by installing an extension and repairing after an upgrade of the environment, the version was upgraded to 2.11. It took us a lot of manual labor to finally notice the difference in the versions in C#. Shouldn't there be a check in the base app to check the Assembly version? If the environment is not flexible for version changes, at least a better error message than "The type of one or more arguments does not match the method."
Category: Development
STATUS DETAILS
Needs Votes
Ideas Administrator

Thank you for this suggestion! Currently this is not on our roadmap. We are tracking this idea and if it gathers more votes and comments we will consider it in the future. Best regards, Business Central Team

Comments

T

Can you provide more information on this? As this is a generic problem, can you provide a way to reproduce this behavior?

How does this relate to the fact that the runtime can have a single version of a .NET assembly loaded? If you have 10 extensions, each specifying a different version for the same .NET assembly, the runtime will load a single one.

Category: Development