-
Notifications
You must be signed in to change notification settings - Fork 50
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow ordering of WebActivator calls across multiple assemblies #13
Conversation
I'm out and won't be able to look at this in depth till August. Though I do find it a little odd to order across assemblies in the sense that there is no shared understanding of the Ordering even means when assemblies are authored by different people. |
Yeah, I can understand that point of view. It's not something that I'd Perhaps some more about the use case might be helpful? We've got an internal product that we maintain, and which gets dropped into What about looking at it the other way? Could you see a downside to On Friday, July 12, 2013, David Ebbo wrote:
|
See related discussion in #10. We should try to get your change in, though I probably won't be able yo get to it for another week. To answer your question, I don't really see a downside, other than potentially breaking scenarios that were making questionable assumption about the order they currently get. Hopefully, in scenarios where people don't use Order attributes, your change will have no effect on the effective ordering. |
Great. The commit looks a bit big, but most of the changes are just adding On Wed, Jul 31, 2013 at 9:17 AM, David Ebbo notifications@github.comwrote:
|
Yes, the change looks safe. Would you mind checking that the sorting algorithm is stable? That would guarantee that the ordering will not be affected in the (common) case where no Order is specified. |
Could you yank the ncrunch file and resubmit (maybe add to gitignore)? Please reset so the file is not in the history line. Thanks! |
Argh. Yes, will do. On Tuesday, 6 August 2013, David Ebbo wrote:
|
Actually, I just did it myself. The change is in! Please try WebActivatorEx 2.0.3 to make sure everything looks good. Thanks for your contribution! |
Hi David,
I have some web activator calls which live in a number of libraries. At the moment, Web Activator ordering only orders the calls inside a single assembly, not across multiple.
I think what I've done here should solve this. Do you want to take a look?
Thanks,
Neil