I wrote a WP7 application that includes source code for both the trial version and the full version, for example,
if (App.IsTrial){ // show trial mode }else{ // show full mode }
This means that the trial version and the full version are in the same XAP file. When I send the application to the market, I send each version separately or send once for both versions.
source share