From 537b3b0f5dda85e4163948608f043f216bf589f8 Mon Sep 17 00:00:00 2001 From: Kenny <16214078+KennyTK@users.noreply.github.com> Date: Tue, 31 Oct 2023 19:02:25 -0400 Subject: [PATCH] Update README.md Creating app.manifest may not update reference in csproj. --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 96c7f170d..7c8d153c3 100644 --- a/README.md +++ b/README.md @@ -50,12 +50,21 @@ Apps should be as fast easy to install. Update should be seamless like Google Ch 2. Add SquirrelAwareVersion to your assembly manifest to indicate that your exe supports Squirrel. Note: In newer .NET Core versions you first need to add the Application Manifest through New Item window. +app.manifest: ```xml 1 ``` +YourApp.csproj: + ```xml + + + YourApp\app.manifest + + + ``` 3. Handle Squirrel events somewhere very early in your application startup (such as the beginning of `main()` or `Application.OnStartup()` for WPF).