My client wants me to have a test and prod version of my app that can be installed side by side on the same device. I don't want to duplicate and maintain separate code bases so I created separate deployment projects and added a config file in the test deployment project that had a test setting on. This idea seems really naive and brittle and it's mostly because I don't know better. If someone has a better idea about how to do this (and help me not to embarrass myself) or can point me to a good resource, I'd much appreciate it.
Creating a Test and Prod CAB for my Windows Mobile 6 application
110 views Asked by enamrik At
1
There are 1 answers
Related Questions in WINDOWS-MOBILE-6
- ElectronJS and compile for Windows CE 6.0
- Win CE Enable/Disable Touch With Application
- Windows Mobile emulator can't connect to network neither local SQL Server database
- Windows Mobile - RFID Reader - IP 30
- Create app for Windows Mobile 6 (and above)
- Windows Mobile debug on Visual Studio 2008 shows "Operation could not be completed" and "Default output location on device" empty list in Device Tools
- Windows CE 6.0 sql server requires encription on error
- Unable to connect Windows Mobile 6 emulator to internet in Windows Server 2012 R2
- Using C# bluetooth API on windows mobile device
- Options to work with Visual Studio 2008 project targeting Windows Mobile 6 platform
- WCF REST service and client notifications
- GPS Intermediate Driver Constantly Return 0 0 LAT LNG
- Windows Moible 6.5 SDK GPS Sample Bugged
- Windows Mobile 6.5 Icons Menu
- Portable Class Library and Windows Mobile 5, 6, 6.5
Related Questions in DEPLOYMENT-PROJECT
- Creating a build for Visual Studio Deployment Project via command prompt
- How to run a deployed .exe file with administrator privileges?
- Continue to deploy project after prerequisites installation
- Does Uninstall action run during product upgrade?
- Windows Installer - User Interface Form Visual Studio Deployment Project
- PowerShell Script for Bamboo to deploy a windows service to our QA server
- Inline script task Powershell/ batch in bamboo deployment project does not fail the deployment project when errored out or during any exceptions
- upgrade winform application not overwriting XML file even when "Always Copy"
- Visual Studio Deployment Project - How to give a user write access to a resource file
- Error after upgrading to VS 2013 in deployment project
- WIX Operating System Condition Always true
- Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) returns wrong value in Setup project
- Visual Studio 2008 in Windows 8 - Projects building when not checked in Configuration Manager
- About adding prerequisites to make setup files on Microsoft Visual Studio 2008
- How to use AssemblyInformationalVersionAttribute in Deployment Project
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
I went with the idea of having test and prod deployment projects for in my windows mobile solution. Haven't had any issues but I still feel there's a better way