Skip to content

Commit

Permalink
Showing 6 changed files with 10 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@
<metadata>
<id>NetSparkleUpdater.UI.WinForms.NetFramework</id>
<title>NetSparkleUpdater WinForms .NET Framework UI</title>
<version>3.0.0-preview20231207</version>
<version>3.0.0-preview20231207002</version>
<authors>Deadpikle, Dirk Eisenberg</authors>
<owners>Deadpikle</owners>
<license type="file">LICENSE.md</license>
@@ -19,7 +19,7 @@
<releaseNotes>2.0: See https://github.com/NetSparkleUpdater/NetSparkle for all information and to file issues/pull requests for and ask questions about this project.</releaseNotes>
<dependencies>
<group targetFramework=".NETFramework4.5.2">
<dependency id="NetSparkleUpdater.SparkleUpdater" version="3.0.0-preview20231207" exclude="Build,Analyzers" />
<dependency id="NetSparkleUpdater.SparkleUpdater" version="3.0.0-preview20231207002" exclude="Build,Analyzers" />
</group>
</dependencies>
</metadata>
2 changes: 1 addition & 1 deletion src/NetSparkle.UI.Avalonia/NetSparkle.UI.Avalonia.csproj
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
<TargetFrameworks>net8.0;net7.0;net6.0;netstandard2.0</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>NetSparkleUpdater.UI.Avalonia</PackageId>
<Version>3.0.0-preview20231207</Version>
<Version>3.0.0-preview20231207002</Version>
<Authors>Deadpikle</Authors>
<Company>Deadpikle</Company>
<Product>NetSparkleUpdater.UI.Avalonia</Product>
2 changes: 1 addition & 1 deletion src/NetSparkle.UI.WPF/NetSparkle.UI.WPF.csproj
Original file line number Diff line number Diff line change
@@ -13,7 +13,7 @@
<PackageProjectUrl>https://github.com/NetSparkleUpdater/NetSparkle</PackageProjectUrl>
<RepositoryUrl>https://github.com/NetSparkleUpdater/NetSparkle.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Version>3.0.0-preview20231207</Version>
<Version>3.0.0-preview20231207002</Version>
<PackageIcon>software-update-available.png</PackageIcon>
<PackageIconUrl />
<Description>NetSparkleUpdater/NetSparkle app updater framework with built-in WPF .NET Core and .NET Framework UI. NetSparkleUpdater/NetSparkle is a C# .NET software update framework that allows you to easily download installer files and update your C# .NET Framework or .NET Core software. Built-in UIs are available for WinForms, WPF, and Avalonia. You provide, somewhere on the internet, an XML appcast with software version information along with release notes in Markdown or HTML format. The NetSparkle framework then checks for an update in the background, displays the release notes to the user, and lets users download or skip the software update. The framework can also perform silent downloads so that you can present all of the UI yourself or set up your own silent software update system, as allowed by your software architecture. It was inspired by the Sparkle (https://sparkle-project.org/) project for Cocoa developers and the WinSparkle (https://winsparkle.org/) project (a Win32 port).</Description>
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@
<Copyright>Copyright © 2023</Copyright>
<OutputPath>..\bin\$(Configuration)\NetSparkle.UI.WinForms\</OutputPath>
<PackageId>NetSparkleUpdater.UI.WinForms.NetCore</PackageId>
<Version>3.0.0-preview20231207</Version>
<Version>3.0.0-preview20231207002</Version>
<Authors>Deadpikle</Authors>
<Company>Deadpikle</Company>
<Description>NetSparkleUpdater/NetSparkle app updater framework with built-in WinForms .NET Core UI. NetSparkleUpdater/NetSparkle is a C# .NET software update framework that allows you to easily download installer files and update your C# .NET Framework or .NET Core software. Built-in UIs are available for WinForms, WPF, and Avalonia. You provide, somewhere on the internet, an XML appcast with software version information along with release notes in Markdown or HTML format. The NetSparkle framework then checks for an update in the background, displays the release notes to the user, and lets users download or skip the software update. The framework can also perform silent downloads so that you can present all of the UI yourself or set up your own silent software update system, as allowed by your software architecture. It was inspired by the Sparkle (https://sparkle-project.org/) project for Cocoa developers and the WinSparkle (https://winsparkle.org/) project (a Win32 port).</Description>
2 changes: 1 addition & 1 deletion src/NetSparkle/NetSparkle.csproj
Original file line number Diff line number Diff line change
@@ -4,7 +4,7 @@
<TargetFrameworks>net8.0;net7.0;net6.0;netstandard2.0;net462</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>NetSparkleUpdater.SparkleUpdater</PackageId>
<Version>3.0.0-preview20231207</Version>
<Version>3.0.0-preview20231207002</Version>
<Authors>Deadpikle, Dirk Eisenberg</Authors>
<Description>NetSparkleUpdater/NetSparkle is a C# .NET software update framework that allows you to easily download installer files and update your C# .NET Framework or .NET Core software. Built-in UIs are available for WinForms, WPF, and Avalonia; if you want a built-in UI, please reference a NetSparkleUpdater.UI package. You provide, somewhere on the internet, an XML appcast with software version information along with release notes in Markdown or HTML format. The NetSparkle framework then checks for an update in the background, displays the release notes to the user, and lets users download or skip the software update. The framework can also perform silent downloads so that you can present all of the UI yourself or set up your own silent software update system, as allowed by your software architecture. It was inspired by the Sparkle (https://sparkle-project.org/) project for Cocoa developers and the WinSparkle (https://winsparkle.org/) project (a Win32 port).</Description>
<Copyright>Copyright 2010 - 2023</Copyright>
5 changes: 4 additions & 1 deletion src/NetSparkle/SparkleUpdater.cs
Original file line number Diff line number Diff line change
@@ -1588,7 +1588,10 @@ chcp 65001 > nul
LogWriter.PrintMessage("Starting the installer script process at {0} via shell exec", batchFilePath);
Exec(batchFilePath, false); // _installerProcess will be set up in `Exec`
}
await QuitApplication();
if (ShouldKillParentProcessWhenStartingInstaller)
{
await QuitApplication();
}
}

// Exec grabbed from https://stackoverflow.com/a/47918132/3938401

0 comments on commit 98a0917

Please sign in to comment.