I Have a C# Windows 8.1 project on Visual Studio that I would like to convert to a Windows Desktop application.
Is there an easy way to do it ?
Thank you
I Have a C# Windows 8.1 project on Visual Studio that I would like to convert to a Windows Desktop application.
Is there an easy way to do it ?
Thank you
There is no automatic way. The easiest way is to create two new projects, one is the desktop (WPF) app and the other is shared project. Then move all the code that you can to the shared project. You might need to use a conditional compiling (#if
).