one project two apps (paid and free) on Windows phone

86 Views Asked by At

I have an a PAID app on the store. Now I would like to distribute another free(2 apps: 1 paid and 1 free). Obviously I would not recreate another project. you can do? on ios and android is direct by the project with the targets. you can on windows phone? i use Windows phone 8.1 silverlight

1

There are 1 best solutions below

11
On BEST ANSWER

The same as on iOs and Android. Use Conditional compilation symbols.

enter image description here

and then in code:

#if FREE_VERSION
            TrialPanel.Visibility = Visibility.Visible;
#endif