Allow one 'MyExtensions' class per query sub folder
I'm starting to have a big folder hierarchy in My Queries, using each sub folder for a specific purpose.
The MyExtensions class is growing huge, if I could have one extension class per sub folder I would organize my extensions in a much clearer way.
I also hit a wall when I wanted to use a dll from a previous version that was already included in the global extensions. My query failed with exception: "Assembly 'MyExtensions.FW40 ...' uses 'MyAssembly, Version 2.0.0.0' which has a higher version than referenced assembly 'MyAssembly, Version 1.0.0.0'.
-
Joris Talma commented
You can use portable deployment to create project specific My Extensions.
See: https://www.linqpad.net/PortableDeployment.aspx
(Place LINQPad.exe in folder, run LINQPad from here, create file Plugins\Framework 4.6\MyExtensions.FW46.linq to create project specific extensions)
-
Jonatas Afonso commented
Same to me, MyExtensions is growing fast.
I really want to know better ideas to organize it