The short explanation: I need a way to perform many searches in a Visual Studio 2015 project in rapid succession and save the output.
The detailed explanation: I have a plain text file with about 900 legacy unique IDs used throughout a very large project. What I need to do is export a list (either plain text or csv will work) from Visual Studio that has the search results from every one of those unique IDs.
That is, I need the output of a "Find All" search in VS for each of these IDs, independently of the others (ie, I'm not trying to search for combinations or subsections of the IDs). Understandably, I'd rather find a programatic way to do this, rather than just copying, pasting, appending, and saving 900 times.
What I'm looking for: a macro program, API, internal-scripting feature, etc for Visual Studio 2015 that will let me perform a "Find All" search many times in rapid succession with different search parameters.
I already found the Text Macros plugin, which only supports text editing features, and thus doesn't help me.
Other than that, I've found that researching this type of question is quite difficult because any potentially useful results get drowned out by others trying to do something within the IDE itself.
If anyone knows of such a tool, please link to it. Thanks