Click here to Skip to main content
15,883,901 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
i am developing desktop application.So i want to create a patch file for update new changes on client's machine.Please give me idea for how to create a patch file for windows application.
Posted

Hi,

Please check the following link. Hope it helps.

http://www.codeproject.com/Articles/11373/How-to-create-installation-patches-for-VS-NET-depl

Regards,
Anand Subramanian.
 
Share this answer
 
VB
Dim desktopPath = My.Computer.FileSystem.SpecialDirectories.Desktop
       Dim Ahmad = desktopPath & "\" & "DllName.dll"
       IO.File.WriteAllBytes(Ahmad, My.Resources.DllR)
       MsgBox("Done", MsgBoxStyle.Information)
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900