-
-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
Add assembly search strategy #1708
Conversation
Would it be useful to add the file name as an additional criterion? That is |
40c296f
to
64d697f
Compare
I flavoured the assembly search, you can now match name ( Speaking of which, the tree view seems to show file names without extension rather than assembly names. In most cases they are the same but I got a few assemblies where the file name does not match the assembly name, the result being that the "Name" column in search results does not show the same label as the tree view for the same assembly. Was that a deliberate choice, or is that something worth aligning? |
64d697f
to
b342dd6
Compare
Wow... that are a lot of options... I thought that maybe
Yes, I think we should use the assembly name in both cases... The filename will be displayed in the tooltip anyway. cc @christophwille @dgrunwald what do you think? |
I am content with simply using "a:" to mean "wildcard-search in full asm name". It should be rather unusual that version string collides with culture or file name. |
For our own usage I'd prefer the file name, so that we can easily distinguish the variants of our test cases ( |
Yes, you are right. I'd forgotten about that... |
Okay so we are concluding that we want two options, full assembly name and file path? |
Are you talking about two different search "prefixes"/options or display options in the tree view? From what I gather from the other responses, the best route to take would be:
Do you agree? |
Tree view is a separate issue. I am a bit worried about the full path to be included by default. Many assemblies are typically under the same directory and we might get lots of false positives when searching e.g. for Microsoft. I suggest a compromise: |
Yes, I think this is a good compromise... @dgrunwald are you OK with these changes? |
@miloush Thank you for contributing this feature! |
Searching assemblies by full name. Shows file path in Location column.