Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/havendv/wixsharp.dotnetbootstrapper

Allows you to create a bootstrapper for an MSI file in one line, simply by specifying the required .Net version
https://github.com/havendv/wixsharp.dotnetbootstrapper

bootstrapper dotnet msi netframework wixsharp

Last synced: 26 days ago
JSON representation

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

Awesome Lists containing this project

README

        

# 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
```cs
DotNetBootstrapper.Build(project, WebVersions.Net472);

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

DotNetBootstrapper.BuildExe(project, version);
```