mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-01-07 22:53:14 -06:00
60 lines
2.3 KiB
C#
60 lines
2.3 KiB
C#
//css_dir ..\..\;
|
|
//css_ref Wix_bin\SDK\Microsoft.Deployment.WindowsInstaller.dll;
|
|
//css_ref System.Core.dll;
|
|
|
|
using System;
|
|
using System.Linq;
|
|
using System.Windows.Forms;
|
|
using System.Xml;
|
|
using Microsoft.Win32;
|
|
using WixSharp;
|
|
using WixSharp.CommonTasks;
|
|
|
|
class Script
|
|
{
|
|
static public void Main()
|
|
{
|
|
try
|
|
{
|
|
var project =
|
|
new Project("My Product",
|
|
new Dir(@"%ProgramFiles%\My Company\My Product",
|
|
new InternetShortcut
|
|
{
|
|
Name = "Wix# project page",
|
|
Target = "https://github.com/oleg-shilo/wixsharp"
|
|
},
|
|
new Dir("Samples",
|
|
new File(@"AppFiles\MyApp.cs")),
|
|
|
|
new File(@"AppFiles\MyApp.exe",
|
|
new FileShortcut("MyApp", "INSTALLDIR"), //INSTALLDIR is the ID of "%ProgramFiles%\My Company\My Product"
|
|
new FileShortcut("MyApp", @"%Desktop%") { IconFile = @"AppFiles\Icon.ico", WorkingDirectory = "Samples", Arguments = "777" })
|
|
//,
|
|
// // new ExeFileShortcut("Uninstall MyApp", "[System64Folder]msiexec.exe", "/x [ProductCode]")
|
|
// new ExeFileShortcut("MyApp Setup", @"%ProgramFiles%\dotnet\dotnet.exe",
|
|
// "\"[INSTALLDIR]AIS Manager Setup.dll\"")
|
|
// {
|
|
// WorkingDirectory = "%Temp%"
|
|
// }
|
|
),
|
|
|
|
new Dir(@"%ProgramMenu%\My Company\My Product",
|
|
new ExeFileShortcut("Samples", "[Samples]", ""),
|
|
new ExeFileShortcut("Uninstall MyApp", "[System64Folder]msiexec.exe", "/x [ProductCode]")));
|
|
|
|
project.GUID = new Guid("6fe30b47-2577-43ad-9095-1861ba25889b");
|
|
project.UI = WUI.WixUI_ProgressOnly;
|
|
|
|
project.Platform = Platform.x64;
|
|
// project.OutFileName = "setup";
|
|
project.PreserveTempFiles = true;
|
|
|
|
Compiler.BuildMsi(project);
|
|
}
|
|
catch (System.Exception ex)
|
|
{
|
|
Console.WriteLine(ex.Message);
|
|
}
|
|
}
|
|
} |