I need to create an automatic process that searches in several *.dtsx (version 2017) which tables are being used, is it possible to do this?
And at the end, keep the package name in a table and which table is being used in that package.
Thank you for your time
DTSX is basically XML file. You can load the content to xml variable and query the table names being used there.
Reference MSDN wiki link. I have modified the code little bit, for your needs. The below code is not tested.