Found it. Need to use injection....
Compiler.WixSourceGenerated += document =>
{
var components = document.FindAll("Component");
foreach(var component in components)
{
if(component.Attribute("Id").Value.ToString().ToUpper().Trim().EndsWith(".PPLC"))
{
component.SetAttributeValue("Permanent", "yes");
}
}
};
Thanks