2
我一直在使用WIX#(wixsharp)創建MSI,我看不到如何安裝Windows服務。我已經瀏覽了整個CHM文件,但我沒有看到任何特定的Windows服務。我可以使用Wixsharp安裝Windows服務嗎
TIA,
布倫特...
我一直在使用WIX#(wixsharp)創建MSI,我看不到如何安裝Windows服務。我已經瀏覽了整個CHM文件,但我沒有看到任何特定的Windows服務。我可以使用Wixsharp安裝Windows服務嗎
TIA,
布倫特...
隨着1.0.4版本(發佈2015年1月18日),維克斯#支持安裝Windows服務。
https://wixsharp.codeplex.com/releases/view/610843
File service;
var project =
new Project("My Product",
new Dir(@"%ProgramFiles%\My Company\My Product",
service = new File(@"..\SimpleService\MyApp.exe")));
service.ServiceInstaller = new ServiceInstaller
{
Name = "WixSharp.TestSvc",
StartOn = SvcEvent.Install,
StopOn = SvcEvent.InstallUninstall_Wait,
RemoveOn = SvcEvent.Uninstall_Wait,
};