In that case open at the main xaml in studio
Open project panel where you can see all xaml you have built
And choose the one where you have built and right click that xaml in project panel and make it as main file
So from next time whenever you run that xaml will be set to main and it will get executed
This link gives picture representation which I hope will make easy for you
Open project.json file. Check the name after “main:” field. Whichever xaml file you want as a parent file/main file write its name there. then build your package from main xaml file and upload it on orchestrator.
see the screenshot
I have created project which contains total 03 workflows.
1)Main.xaml
2)main1.xaml
3)main3.xaml
Open the main file. there are 03 more sequences in the main workflow. like below
the first sequence contains messagebox of main file .
the second sequence which i have disabled right now if you open this i am invoking main1 file and inside main1 file it contain msg box of main1 file. you can enable it for your understanding.
in the third sequence it contains main2 file and it is disable right now you can enable it and it contains message b0x of main2 file…
if you create a package as it is then it will only show the messagebox of main file which is in first sequence.