https://github.com/rex706/updater
Light weight program updater that takes file update info as command line arguments.
https://github.com/rex706/updater
Last synced: 11 months ago
JSON representation
Light weight program updater that takes file update info as command line arguments.
- Host: GitHub
- URL: https://github.com/rex706/updater
- Owner: rex706
- Created: 2017-01-03T17:51:48.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-06-30T21:41:30.000Z (almost 3 years ago)
- Last Synced: 2025-05-15T11:33:50.373Z (about 1 year ago)
- Language: C#
- Homepage:
- Size: 42 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Updater
Light weight file updater.

* Feed update manifest url as command line argument.
- i.e. a URL to a text file.
* Update parameters are separated by new lines.
* First paramenter expected is the new package version.
- This is usually only needed for UpdateCheck.cs, which opens the Updater.
* Second parameter expected is an executable to be run when the updater finishes.
- Ideally the program that opens the updater, but can be anything.
* Rest of parameters expected will be in pairs of two
- File download URL
- File path and/or File name
Example:
```
1.2.3.4
fileToRunWhenComplete.exe
(file2 direct download URL)
file2.dll
(file3 direct download URL)
file3.txt
```