You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Looking to use Squirrel.Windows for an application that I need to provide auto-update functionality. It's a Kiosk style application, and has a central "server" component that hosts the data bits that are fed into the Kiosk application. According to the documents, we're supposed to call: bool UpdateManager.CheckForUpdates("http://mycoolsite.com/releases/") to check for updates, but I'd rather have it check the web address from which the software was initially installed from, much like what ClickOnce did, to see if any updates exist for the application.
The base 'data services' project, we're going to install using a forced mechanism to manage which of our clients are on a specific version.
Any suggestions on this?
The text was updated successfully, but these errors were encountered:
So ClickOnce is actually cheating in this regard, because you specify the Installation Folder Location as part of the publish step, and it uses that at runtime.
The other thing that ClickOnce does is let you specify a different location for updates, using the lovely mage.exe tool
I'm open to suggestions on this, but it's rather tricky because I don't want to depend on browser behaviour - we assume the same browser downloads the same bits from the same URL as the next browser (until you publish an update, of course)...
Looking to use Squirrel.Windows for an application that I need to provide auto-update functionality. It's a Kiosk style application, and has a central "server" component that hosts the data bits that are fed into the Kiosk application. According to the documents, we're supposed to call:
bool UpdateManager.CheckForUpdates("http://mycoolsite.com/releases/")
to check for updates, but I'd rather have it check the web address from which the software was initially installed from, much like what ClickOnce did, to see if any updates exist for the application.The base 'data services' project, we're going to install using a forced mechanism to manage which of our clients are on a specific version.
Any suggestions on this?
The text was updated successfully, but these errors were encountered: