Skip to content

Allows you to create a bootstrapper for an MSI file in one line, simply by specifying the required .Net version

License

Notifications You must be signed in to change notification settings

HavenDV/WixSharp.DotNetBootstrapper

Repository files navigation

WixSharp.DotNetBootstrapper

Allows you to create a bootstrapper for an msi file in one line, simply by specifying the required .Net version

NuGet

Install-Package WixSharp.DotNetBootstrapper.Web

Usage

DotNetBootstrapper.Build(project, WebVersions.Net472);

// This is equivalent to
project.SetNetFxPrerequisite(version.Condition, version.ErrorMessage);
Compiler.BuildMsi(project);

DotNetBootstrapper.BuildExe(project, version);