Link to home
Start Free TrialLog in
Avatar of NDennisV
NDennisVFlag for United States of America

asked on

Two versions of one program in one Visual Studio 2012 project?

I have a Visual Studio 2012 C#, Winforms program.

I want to make a slightly advanced version of this program without having to create a new project and without losing the current version.

I'll need to be able to switch back and forth to publish both versions.

How can I do this please?
Avatar of bbao
bbao
Flag of Australia image

> to switch back and forth to publish both versions.

basically, that just means you need to maintain the two versions at the same time.

therefore, make a copy of the source version, rename it, open and edit the copied version as if it is a new different project.

make it simple and clear.
ASKER CERTIFIED SOLUTION
Avatar of Éric Moreau
Éric Moreau
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of NDennisV

ASKER

Give me a few days to see if this works Eric Moreau.
Thank you