Free solution for automatic updates with a .NET/C# app?

前端 未结 7 2248
礼貌的吻别
礼貌的吻别 2020-12-22 23:55

From searching I can see this has been asked time and time again, but not adequately enough, so here goes. I\'m a hobbyist developer with no budget. A program I\'ve been dev

7条回答
  •  清酒与你
    2020-12-23 00:36

    all guys are right specially look at the abatishchev reply.but i think some thing other need that guy forgot it. try to develop your project "modular".put them your code in class library as you can.so during the fix operation replace one of them.think a bout database fix.some time you need to add a column to your database table.what do you do for these cases?

    a have developed an update project.in that , i have three kind of fixes. 1- BUG in program operation and need to replace a DDL file 2- Bug in program and need to update currently program executive file 3- bug or change the database and need to execute a sql server query

    in a table on web host i put the version history and every time that my app start check for new version.if any update exist check for its type and download it and do the suitable action depend on the update kind and parameters

    good luck dude

提交回复
热议问题