C
C#2y ago
Heartbeat1

.net Framework Console app check against modification and best practice deploy for auto update.

Hey Everyone, i am creating an console app right now which i want to deploy in the next days. The GitHub repo will be Public so i need to find an way to secure my api against modified Versions of the Tool (i didnt think someone would do this, but people are people ...). Whats the best way to do this? And the second one i think its not possible to check for updates against github how can i deploy it to an self hosted website so i can check for updates?
2 Replies
Angius
Angius2y ago
You can check for updates against Github using their API You can fetch the releases and see the tag or release number. Compare it to the current one and voila
Heartbeat1
Heartbeat12y ago
ohh okkay, that works? That would be perfect thanks for that info