// Next, generate and slim the proxy file and the TSelector file
var proxyFile = await local.GenerateProxyFile(files, _exeReq.TreeName, queryDirectory);
var slimedProxyFile = SlimProxyFile(referencedLeafNames, proxyFile, queryDirectory);
TraceHelpers.TraceInfo(14, "ExecuteQueuedQueries: Startup - building the TSelector");
var templateRunner = WriteTSelector(slimedProxyFile.Name, Path.GetFileNameWithoutExtension(proxyFile.Name), combinedInfo, queryDirectory);
That generate proxy file can be quite expensive - so when we have lots to run, why not do it just once, and then copy over the file.
That generate proxy file can be quite expensive - so when we have lots to run, why not do it just once, and then copy over the file.