Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 749 Bytes

SquirrelIntegration.md

File metadata and controls

28 lines (20 loc) · 749 Bytes

Squirrel Application Integration

Just add this code to your .NET application.

Better when the application is fully loaded, in order to not slow down application startup time.

        Task.Run(async () =>
          {
              using (var mgr = new UpdateManager(@"https://s3-<region>.amazonaws.com/<appbucket>"))              
              {
                  try
                  {
                      await mgr.UpdateApp();
                  }
                  catch (Exception ex)
                  {

                  }
              }
          });

Reference