How To Exclude mp3 (In-Web) and ogg (In-Program) In Project.xml?

How You Exclude mp3 (Web Only) and ogg (Program Only) In Project.xml?

You likely want something like:

<assets path="assets" include="*" exclude="*.ogg" if="windows" embed="true" /> 
<assets path="assets" include="*" exclude="*.mp3" if="html5" embed="true" /> 

Complete documentation is at: XML Format

2 Likes