How to deploy C# application to be used in branch / remote office(s)

deploymentsoftware-updatesweb-applications

Have very recently started a new position. One of my key challenges is a C# WinForms application (let's call it AppX) that causes a lot of non-planned work.

The main reason for this is that it needs to be deployed to several hundred branch offices. Currently, this is done via GP update or bespoke application. Both of these methods are unreliable and means we can't effectively deploy version upgrades.

Bit of background to what the software needs to do and some of the technical issues / background:-

  1. AppX needs to produce results in real time
  2. AppX needs to connect to a SQL server (express or full edition) which is
    physically located in the branch office
  3. AppX needs to ensure that after a version upgrade all remote sites are on the same version
  4. AppX can't be deployed via a thin client solution such as Citrix or
    Remote Desktop services
  5. The headquarters network can see the entire branch office network and connect into their SQL servers

My initial thoughts were

ClickOnce deployment — however there seems to be some suggestions that there may be some issues with conflicts of the .Net framework with other software

Deploy the solution as a web app at the headquarters which connects back into the remote SQL server – technically I'm not sure how I would go about this

I guess that this is something that others may have come across so I would be interested to know if there are any other suggestions on how to approach this

Thanks

Best Answer

why not use TFS automated Build ? you can read more here

http://msdn.microsoft.com/en-us/library/ff650529.aspx.

For database you will have to create Database solution in your project and that's all you need to worry rest TFS will take care of it.

Related Topic