mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-01-08 23:23:02 -06:00
21 lines
560 B
C#
21 lines
560 B
C#
|
//css_dir ..\..\;
|
||
|
//css_ref Wix_bin\SDK\Microsoft.Deployment.WindowsInstaller.dll;
|
||
|
//css_ref System.Core.dll;
|
||
|
using System;
|
||
|
using WixSharp;
|
||
|
|
||
|
class Script
|
||
|
{
|
||
|
static public void Main()
|
||
|
{
|
||
|
Project project =
|
||
|
new Project("MyProduct",
|
||
|
new Dir(@"%ProgramFiles%\My Company\My Product",
|
||
|
new File(@"Files\Docs\Manual.txt"),
|
||
|
new File(@"Files\Bin\MyApp.exe")));
|
||
|
|
||
|
project.GUID = new Guid("6f330b47-2577-43ad-9095-1861ba25889b");
|
||
|
|
||
|
Compiler.BuildMsi(project);
|
||
|
}
|
||
|
}
|