我正在使用NETSparkle自动更新我的 .NET 应用程序。我的新版本的 appcast.xml 中有以下内容:
<item>
<title>Version 2.0</title>
<sparkle:releaseNotesLink>http://blah/1.2.0.html</sparkle:releaseNotesLink>
<pubDate>Sat, 19 Oct 2013 13:20:11 +0800</pubDate>
<enclosure url="http://blah/Setup.2.0.exe" sparkle:version="2.0" type="application/octet-stream"/>
</item>
由于 netsparkle 在安装更新后会重新启动应用程序,因此我不希望安装程序启动它。所以我在我的安装程序中添加了一个“/norun”参数,所以它会在最后跳过“立即启动”选项。
但我不知道如何在我的 appcast.xml 中将参数传递给 setup.exe?
我在想像添加:sparkle:arguments="/norun"
到<enclosure>
,但没有骰子。