Smoothly Deploying Your App With Squirrel
Many .NET developers are familiar with ClickOnce, Microsoft’s simple deployment solution for quickly packaging and deploying software that is easy for end-users to install. However, these conveniences come with limitations.
- There are only a couple automatic update situations. To show custom UI when an update is available requires disabling the automatic updates and handling everything in code.
- The generated installer generates with a fixed deployment location. The installer must download all of the application files.
- Make sure to download all of the application files individually. Doing otherwise can cause issues on flaky internet connections when retrying may be necessary.
- No support for machine-wide installs.
- Supporting both online and offline installs requires is difficult.
- No support for custom actions during install/uninstall.
Squirrel offers an alternative that provides a similar end-user install experience and uses NuGet to package and deploy your application. It provides an elegant balance between developer control and automatic updating.
Integrating with Your Project
Let’s take a look at deploying a simple Hello World application.
<Window x:Class="HellowWorld.WPF.MainWindow"
xmlns="https://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="https://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="https://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="https://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d" Loaded="MainWindow_OnLoaded"
Title="MainWindow" Height="350" Width="525">
<StackPanel VerticalAlignment="Center" HorizontalAlignment="Center" TextElement.FontSize="20">
<TextBlock x:Name="CurrentVersion" Text="Loading..."/>
<TextBlock x:Name="NewVersion" />
</StackPanel>
</Window>
Code language: HTML, XML (xml)
First, install the Squirrel.Windows NuGet package:
PM> Install-Package Squirrel.Windows
Code language: CSS (css)
Next, we need to add the code to check for updates. Unlike ClickOnce, there is no magical bootstrapping of your application. You have to put in the code to do the update checks. Fortunately, the Squirrel library can do this with just a couple of lines of code.
For this application, we will just do a single update check when the window loads.
private async void MainWindow_OnLoaded(object sender, RoutedEventArgs e)
{
using (var updateManager = new UpdateManager(@"C:\SquirrelReleases"))
{
CurrentVersion.Text = $"Current version: {updateManager.CurrentlyInstalledVersion()}";
var releaseEntry = await updateManager.UpdateApp();
NewVersion.Text = $"Update Version: {releaseEntry?.Version.ToString() ?? "No update"}";
}
}
Code language: JavaScript (javascript)
UpdateApp Method
In this example, I am using a local folder at the location for the updates. For most situations, this path will likely be a URL.
The handy UpdateApp method is doing quite a bit for us:
- Checks for any available updates
- Downloads any new releases that it finds
- Applies the releases (so the latest version starts next time the app launches)
If you would rather have more control over the update process, the UpdateManager has other methods that give you immense control over the entire process. The UpdateManager also has support for re-starting the application into the latest version.
Now that the app is written we need to release it. Squirrel uses NuGet packages to deploy your application, so we need to bundle it as a NuGet package. For details on creating NuGet packages see this blog post. For this example, I have downloaded the latest (v4.1.0) NuGet CLI and placed it alongside my project file, and am using the Package Manager Console to run commands.
Nuspec File
Create a simple nuspec file:
<?xml version="1.0"?>
<package >
<metadata>
<id>HelloWorld</id>
<version>1.0.0</version>
<authors>Me</authors>
<owners>Me</owners>
<description>HelloWorld - Squirrel</description>
<releaseNotes>Initial release.</releaseNotes>
<copyright>Copyright © 2017</copyright>
</metadata>
<files>
<file src="bin\Release\*.*" target="lib\net45\" exclude="*.pdb;*.vshost.*"/>
</files>
</package>
Code language: HTML, XML (xml)
Most of the values function exactly the same as a NuGet package, but there are a few things to note because this is being distributed with Squirrel:
- The id must not contain spaces.
- The id should not contain any periods (contrary to standard NuGet recommendations).
- The description will appear as the program name when viewed in the list of installed programs within the Control Panel.
- Place the application, and all of its dependencies, in the lib\net45 folder within the NuGet package (It does not matter whether your application is a .Net 4.5 application. This is just the folder that Squirrel uses).
- Confirm that the NuGet package does not contain any dependencies or target multiple platforms.
Create NuGet Package
To create the NuGet package, run:
.\nuget pack nuget\HelloWorld.nuspec
Code language: CSS (css)
This will generate a NuGet package “HelloWorld.1.0.0.nupkg” in our project directory.
Finally, we need to run the NuGet package through Squirrel to create a release.
Squirrel --releasify HelloWorld.1.0.0.nupkg --releaseDir "C:\SquirrelReleases"
Code language: CSS (css)
Note: If this process fails, you may need to restart Visual Studio to get the Package Manager Console to reload the tools.
The output directory now contains four files:

The Setup.exe contains a full copy of the NuGet package. So distributing this one file will be enough to install the application. The name of the file is not significant, and you can rename it to whatever you like.
The RELEASES file contains the list of releases that are available to be installed. This is just a simple text file that contains SHA1 hash, filename, and file size of all of the packages.
77A4810CCFFF6772E21E4C499C696D909A9CE932 HelloWorld-1.0.0-full.nupkg 1165627
Code language: CSS (css)
The initial install does not actually use the HelloWorld.1.0.0.nupkg file. However, it is needed for performing updates.
There is also a Setup.msi that gets created for doing machine-wide installs. It can be ignored (or disabled) if this is not something you need to support.
Running the Setup.exe file allows the application to get installed and launched.

Update Simulation
Now let’s simulate an update to see Squirrel at work
- Update the version number in the nuspec file to be 1.0.1
- Run .\nuget pack nuget\HelloWorld.nuspec to generate a new NuGet package
- Create an updated Squirrel release by running Squirrel –releasify HelloWorld.1.0.1.nupkg –releaseDir “C:\SquirrelReleases”
The output directory now contains a few additional files.

The Setup.exe is updated to contain the latest full NuGet package. Anyone who runs it will get the latest version (in this case 1.0.1) of the application. If you need to keep old Setup.exe files around to install older versions quickly, be sure to rename your existing Setup.exe file before running the Squirrel releasify command.
The RELEASES file has been updated to contain additional entries for the new packages.
77A4810CCFFF6772E21E4C499C696D909A9CE932 HelloWorld-1.0.0-full.nupkg 1165627
8759B8C13E089CBE1A28EA3D6B0886B84D5B52C9 HelloWorld-1.0.1-delta.nupkg 9234
9360C6F390BB38C5FDCC2FF2A3A9EA56919867F8 HelloWorld-1.0.1-full.nupkg 1165626
Code language: CSS (css)
You will notice that, in addition to the HelloWorld.1.0.1-full.nupkg, there is also a HelloWorld-1.0.1-delta.nupkg package created. Rather than containing the full application, it merely contains the delta between the binary files. These are typically much smaller and quicker to deploy. You can control if your application wants to use delta updates or only full updates (documentation) by using the UpdateManager.
The UpdateApp extension method that we used in this application always downloads the full update releases.
Re-running the application verifies that an update has been applied.

Re-launching the application one more time shows that we are now running the latest version.

Highlights of Squirrel
Squirrel also comes with lots of little features (many to alleviate some of the pain points on ClickOnce). You can read the complete documentation, but here are some of the highlights.
- “Splash screen” if the installer takes too much time. It won’t be displayed if the app installs quick enough; a testament to how fast Squirrel truly is (docs).
- Simple GitHub integration for easily deploying your app from GitHub (docs).
- The ability to run code triggered by installer events (docs).
“Squirrel: It’s like ClickOnce but Works™” is a fitting slogan for this application. It only takes a short amount of time to integrate Squirrel into your Windows Desktop applications.
Want More?
Check out my blog on how to publish NuGets with Azure DevOps for more information on the uses of NuGet packages.

Does Your Organization Need a Custom Solution?
Let’s chat about how we can help you achieve excellence on your next project!
Hey, have one query related to this like if we are using
await updateManager.DownloadReleases(applyLatestRelease);
and then after this,
updateManager.UpdateApp();
Then what will happened? Will “UpdateApp” method use the already downloaded update or download it again?
Hi Harrey,
From looking into the Squirrel code, it will download it again (https://github.com/Squirrel/Squirrel.Windows/blob/76c87af6f389bea69576c738ef46574b2945b0ba/src/Squirrel/IUpdateManager.cs#L145-L182).
The UpdateApp method is the “Easy mode” option when using Squirrel. It is basically a simple wrapper around calling CheckForUpdate, DownloadReleases, and ApplyReleases. So if you want to apply the release that you have already downloaded the ApplyReleases method is what you are looking for.
You can find more info about it in the docs here: https://github.com/Squirrel/Squirrel.Windows/blob/76c87af6f389bea69576c738ef46574b2945b0ba/docs/using/update-manager.md
Happy coding.
I wanted to package release builds only and had to modify the nuget pack command to include this parameter: -Prop Configuration=Release
Without this it was packaging the debug build of the 2 Assembly files but picking up the release build of the other files.
Good clarification. I had somewhat assumed in my steps above that those commands were being run from a clean state (such as a CI pipeline). But yes, making sure you restrict it to only publish Release builds is what you want for any production work.
Update: According to https://linustechtips.com/main/topic/887297-what-is-the-squirreltemp-folder/, Squirrel is installed by Microsoft (or possibly some Microsoft app), so it can be safely ignored. I hope it doesn’t use up lots of disk space like “node/npm”.
This article doesn’t make the context clear, but this seems to be a Linux program. What’s it doing on my Windows 10 computer when I never installed it? Just curious.
This is an installer. So if you see it on your system it means that some application you have installed is using it to install. Squirrel itself has a very small footprint so it should not be consuming much space.
Hello Kevin,
Thanks for the article. But you know how beginners using tutorials, copy-paste. This article contain two misspellings:
1. class name in xaml document,
2. Squirrell – name of command (it could be added in env vars as Paths value[../packages/squirrel.windows.x.x.x/tools])
Thanks!
Hi Kevin,
Thanks for the post. Have you ever tried to get the updates before launching the app to mimic clickonce? Supposedly this should work through update manager checkforupdates and restartApp methods as some post shows but I was never been able to get to work. If you were able to do it can you provide sample code? Thanks
Thanks for the article, but it’s not clear where to put the following code:
private async void MainWindow_OnLoaded(object sender, RoutedEventArgs e)
{
using (var updateManager = new UpdateManager(@”C:\SquirrelReleases”))
{
CurrentVersion.Text = $”Current version: {updateManager.CurrentlyInstalledVersion()}”;
var releaseEntry = await updateManager.UpdateApp();
NewVersion.Text = $”Update Version: {releaseEntry?.Version.ToString() ?? “No update”}”;
}
}
Hi Vlad,
That code should go in the MainWindow.xaml.cs (code behind) file for the main Window.
It is an event handler so you will want to make sure you register it for the Loaded event. This is done in the MainWindow.xaml with this line: Loaded=”MainWindow_OnLoaded”
Squirrel is intensely infuriating. Maybe I can’t emphasise “intensely” enough. It HAS TO be able to be overridden for the instances of not having admin level. Maybe if it could generate a notification rather than put a “A new helper for xxxx app is available. Please enter admin credentials…”
Hi Mike,
Thanks for the comment. Can you open an issue on the Squirrel repository? https://github.com/Squirrel/Squirrel.Windows/issues
My experience has been that the author and community around this project have been very responsive when it comes to possible architecture issues.
thanks!