Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add wix build command #1268

Open
wants to merge 3 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ There are a number of minimal to zero efforts you can make to show your support
- Follow [@nukebuildnet](https://twitter.com/nukebuildnet) and [@[email protected]](https://dotnet.social/@nuke)
- Upvote, share, and comment our content (see [#mentions](https://app.slack.com/client/T9QUKHC4A/CDJD8CGQ5) on Slack)
- Talk about NUKE on social media and let others know where it can help (tag us!)
- Give ratings where possible (e.g., extensions for [Rider](https://plugins.jetbrains.com/plugin/10803-nuke-support/reviews) or [Visual Studio](https://marketplace.visualstudio.com/items?itemName=nuke.visualstudio&ssr=false#review-details))

The above points are considered somewhat of the norm in exchange for using the project free of charge.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,17 @@ bool IsUpToDate() => build.BuildAssemblyDirectory.GlobFiles("*.dll")
$"--{ParameterService.GetParameterDashedName(Constants.SkippedTargetsParameterName)}"
}.Concat(settings.Args))
.DisableProcessLogInvocation()
.SetProcessLogger((_, message) => Log.Write(LogEventReader.ReadFromString(message))));
.SetProcessLogger((_, message) =>
{
try
{
Log.Write(LogEventReader.ReadFromString(message));
}
catch
{
Log.Debug(message);
}
}));
}
finally
{
Expand Down
195 changes: 195 additions & 0 deletions source/Nuke.Common/Tools/Wix/Wix.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,195 @@
{
"$schema": "https://raw.githubusercontent.com/nuke-build/nuke/master/source/Nuke.Tooling.Generator/schema.json",
"references": [
"https://wixtoolset.org/docs/tools/wixexe/#wixexe-commands"
],
"name": "Wix",
"officialUrl": "https://wixtoolset.org/",
"help": "The WiX toolset lets developers create installers for Windows Installer, the Windows installation engine.",
"nugetPackageId": "Wix",
"packageExecutable": "wix.exe",
"tasks": [
{
"help": "Build a wixlib, package, or bundle.",
"postfix": "Build",
"definiteArgument": "build",
"settingsClass": {
"properties": [
{
"name": "Arch",
"type": "ArchType",
"format": "-arch {value}",
"help": "Architecture of the package or bundle. Valid values are: x86, x64, arm64. Default: x86. Equivalent MSBuild property: InstallerPlatform"
},
{
"name": "BindFiles",
"type": "bool",
"format": "-bindfiles",
"help": "Bind files into an output .wixlib. Ignored if not building a .wixlib."
},
{
"name": "BindPath",
"type": "string",
"format": "-bindpath {value}",
"help": "Bind path to search for content files."
},
{
"name": "BindPathTarget",
"type": "string",
"format": "-bindpath:target {value}",
"help": "Bind path to search for target package's content files. Only used when building a patch."
},
{
"name": "BindPathUpdate",
"type": "string",
"format": "-bindpath:update {value}",
"help": "Bind path to search for update package's content files. Only used when building a patch."
},
{
"name": "BindVariable",
"type": "List<string>",
"format": "-bindvariable {value}",
"help": "Sets a bind-time variable."
},
{
"name": "CabCache",
"type": "string",
"format": "-cabcache {value}",
"help": "Set a folder to cache cabinets across builds."
},
{
"name": "Culture",
"type": "string",
"format": "-culture {value}",
"help": "Adds a culture to filter localization files."
},
{
"name": "Preprocessor",
"type": "List<string>",
"format": "-define {value}",
"help": "Sets a preprocessor variable."
},
{
"name": "DefaultCompressionLevel",
"type": "CompressionLevel",
"format": "-defaultcompressionlevel {value}",
"help": "Specifies the compression level used when none is specified via MediaTemplate or Media."
},
{
"name": "Extension",
"type": "string",
"format": "-id {value}",
"help": "Load a WiX extension for use during the build."
},
{
"name": "IncludeFolder",
"type": "string",
"format": "-include {value}",
"help": "Folder to search for include files."
},
{
"name": "IntermediateFolder",
"type": "string",
"format": "-intermediateFolder {value}",
"help": "Optional working folder. If not specified, a folder in %TMP% is created."
},
{
"name": "Localization",
"type": "string",
"format": "-loc {value}",
"help": "Localization file to use in the build. By default, .wxl files are recognized as localization."
},
{
"name": "Library",
"type": "string",
"format": "-lib {value}",
"help": "Library file to use in the build. By default, .wixlib files are recognized as libraries."
},
{
"name": "Source",
"type": "string",
"format": "-src {value}",
"help": "Source file to use in the build. By default, .wxs files are recognized as source code."
},
{
"name": "OutputDestination",
"type": "string",
"format": "-out {value}",
"help": "Destination path of output. Required when there are multiple source files; otherwise, defaults to the base name of the source file."
},
{
"name": "OutputType",
"type": "string",
"format": "-outputtype {value}",
"help": "Explicitly set the output type if it cannot be determined from the output."
},
{
"name": "PDB",
"type": "string",
"format": "-pdb {value}",
"help": "Optional path to output .wixpdb. Default will write .wixpdb beside output path."
},
{
"name": "PDBType",
"type": "PDBType",
"format": "-pdbtype {value}",
"help": "Switch to disable creation of .wixpdb. Types: full or none."
},
{
"name": "BuildFiles",
"type": "List<string>",
"format": "{value}",
"help": "wxs source files"
}
]
}
}
],
"commonTaskProperties": [
{
"name": "Help",
"type": "bool",
"format": "--help",
"help": "Show command line help."
},
{
"name": "Version",
"type": "bool",
"format": "--version",
"help": "Display WiX Toolset version in use."
},
{
"name": "NoLogo",
"type": "bool",
"format": "--nologo",
"help": "Suppress displaying the logo information."
}
],
"enumerations": [
{
"name": "ArchType",
"values": [
"x86",
"x64",
"arm64"
]
},
{
"name": "CompressionLevel",
"values": [
"none",
"low",
"medium",
"high",
"mszip"
]
},
{
"name": "PDBType",
"values": [
"none",
"full"
]
}
]
}