Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/havendv/wixsharp.dotnetbootstrapper
- Owner: HavenDV
- License: mit
- Created: 2020-10-29T13:25:58.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-11-28T10:20:21.000Z (about 4 years ago)
- Last Synced: 2024-12-05T07:48:44.391Z (28 days ago)
- Topics: bootstrapper, dotnet, msi, netframework, wixsharp
- Language: C#
- Homepage:
- Size: 11.6 MB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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);
```