Hi All,
I have received multiple ISV licenses from my client and few license files are in .txt and few files are in .xml extension. In my deployment environment, I am able to import .xml files based on the below scripts.
K:\AOSService\PackagesLocalDirectory\Bin\Microsoft.Dynamics.AX.Deployment.Setup.exe --setupmode importlicensefile --metadatadir K:\AOSService\PackagesLocalDirectory --bindir K:\AOSService\PackagesLocalDirectory --sqlserver . --sqldatabase AxDB --sqluser axdbadmin --sqlpwd xx --licensefilename C:\SM\License1.xml
K:\AOSService\PackagesLocalDirectory\Bin\Microsoft.Dynamics.AX.Deployment.Setup.exe --setupmode importlicensefile --metadatadir K:\AOSService\PackagesLocalDirectory --bindir K:\AOSService\PackagesLocalDirectory --sqlserver . --sqldatabase AxDB --sqluser axdbadmin --sqlpwd xx --licensefilename C:\SM\License2.txt
Now I need to add the same all licenses files to my deployable package. So, as per the few blogs, I have created a Licenses folder under my Azure devops Trunk path. Then uploaded the .xml& .txt license files under the same folder.

2. I have enabled Add Licenses To deployable package steps under my build pipeline.

Now my question is what should I specify on Search pattern for license file to add to the package portion. I have multiple extensions(.xml and .txt) license files.
$(build.sourcesDirectory)\Licenses\* ->will this script work?
Need your expert opinion.
Thanks in advance.