Found 60 packages
Automatically force your ClickOnce app to update itself without prompting the user, making a less obtrusive end-user experience, and guaranteeing they are always using the latest version of the application. Adds a post-build event to the project to run a PowerShell script that updates the ClickOnce project's minimum required version in the .csproj/.vbproj file to the latest published version. Because the PowerShell script modifies the .csproj/.vbproj file outside of Visual Studio, the first time you do a build after publishing a new ClickOnce version, if you have any files from that project open you will be prompted to reload the project. In order to prevent this from closing your open tabs, I recommend installing Scott Hanselman’s Workspace Reloader Visual Studio extension. If it does not seem to be working or causes the build to fail, check the Output window for any errors that may have occurred.
This package checks if there is an update available To start upload a text file like the following content on any web server: "1.0.0.0" Now if you want to change your newest version number just change your text file. If you want to change your current version number just change your assembly version. Now you can check for updates by doing the following: string URL = "http://example.com/Version.txt"; int CountofNumbers = 4; bool[] Results = RatzzUpdate.CheckforUpdate(URL,CountofNumbers); Result[0] shows if there is an update available Result[1] shows if there was any problem while checking for an update You can also show the current version or newest version as a text by doing this: string CurrentVersion = RatzzUpdate.GetCurrentVersion(CountofNumbers); string NewestVersion = RatzzUpdate.GetNewestVersion(URL,CountofNumbers); CountofNumbers is the amount of numbers you want to show. If you have any problems or feedback just contact me on jonas@ratzz.de
A c# generic plugin update checker.
Compares a version string with the latest release on a specified repository. * Supports async requests * Incremental versioning 1.0.0.0, 1.0.0 and v.1.0.0 (and combinations) are supported (v. can be any non-number) * Boolean versioning (assume update as soon local and remote are not equal)
Check any GitHub project for update
A toolkit for automatic updating of .NET applications from the web. It can be used as a simple deployment tool. Includes it's own executable updater, which is automatically downloaded the first time the application starts.
Check for newer versions of installed NuGet Packages in your Terminal.
Check for .NET app updates.
Adds auto-update capabilities to an application. Designed for simplicity.
This library can be used to check for application updates. It is designed for WPF and Windows Forms applications. In order to use it, you require an XML file on a remote or local server that represents the Update class.
Helper to check if application update is available on Windows Phone Marketplace from your WP7 app Specially for by.mdday.ru
Easily check if your program is up to date, using GitHub Releases
A Check For Update Library
A library to check for new versions of your Windows app on GitHub
Update visual name; all files which are located deeper than 1 directory now got the prefix "|--"
A class library to check application updates from RESTful endpoint or from a JSON file in a WEB server. A custom checker function is also possible.
Simple & Easy Update Checker. Uses the github api to check for updates. License & Docs https://github.com/ChobbyCode/Update-Checker/blob/master/LICENSE.txt
A dialog for asking user to update the mobile app (Android/iOS), and navigate to the store if agreed Not including any system to manage updates, e.g. check for updates Currently for internal use only Docs: https://bitbucket.org/contemivn/mobile-xamarin-core/wiki/AppUpdateDialog
A library for validating email addresses and exporting results to Word. Example usage: - Uprising: private const string WordFilePath = @"C:\"; private const string ApiUrl =; - Check: public EmailChecker _emailChecker; - Initialize: _emailChecker = new EmailChecker(WordFilePath); - Fetch email: string email = await _emailChecker.RequestEmailFromApiAsync(ApiUrl); - var validationResult = _emailChecker.ValidateEmail(email); - Message:fioLabel.Content = email; resultLabel.Content = validationResult.message; - Export to Word: string email = fioLabel.Content.ToString(); - Validate: var validationResult = _emailChecker.ValidateEmail(email); - Mark:_emailChecker.UpdateWordBookmark("symForbidden", validationResult.result);