SymphonyElectron/installer/win/WixSharpToolset/Samples/Bootstrapper/Simplified Bootstrapper/MySetup.cs
2020-08-21 08:25:55 +02:00

21 lines
364 B
C#

//css_ref ..\..\..\WixSharp.dll;
//css_ref System.Core.dll;
using System;
using System.IO;
using WixSharp;
class InstallScript
{
static public void Main(string[] args)
{
var msi = Compiler.BuildMsi(
new Project("MySetup")
{
GUID = new Guid("6f330b47-2577-43ad-1195-1861ba258877")
});
}
}