aboutsummaryrefslogtreecommitdiff
path: root/src/test/Example.Extension/ExamplePreprocessorExtensionAndCommandLine.cs (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-01-08Remove unnecessary SuppressMessage attributesRob Mensching4-33/+0
2021-01-07Support environment variables with parens in the preprocessorRob Mensching3-0/+30
Fixes wixtoolset/issues#4484
2021-01-07Add test for invalid idsRob Mensching2-0/+31
Closes wixtoolset/issues#5464
2021-01-06Implement improved file sequence optimizationRob Mensching10-11/+185
First ensures files are grouped by DiskId. Then files are sequenced by target directory order to optimize MSI installation behavior. Finally, files are alphabetized in the directory. Additional optimizations could be considered in the future from here. Fixes wixtoolset/issues#4409 Fixes wixtoolset/issues#4708
2021-01-06Default MSI packages to compressedRob Mensching1-4/+7
2021-01-05Fix handling of duplicate directoriesRob Mensching7-15/+92
2021-01-05Fix up tests to work well under NCrunch plus whitespace clean upRob Mensching6-241/+32
2021-01-03Fix x64 Burn stub app manifest (test to come)Bob Arnson2-1/+2
2021-01-03Fix parsing of DpiAwareness attribute.Sean Hall4-1/+55
2021-01-03Add failing tests.Sean Hall11-6/+273
2021-01-03Fix TryGetNextNonSwitchArgumentOrError.Sean Hall4-31/+47
2021-01-03Implement command line for SuppressAllWarnings and WarningsAsError.Sean Hall9-20/+150
Make WixRunner.Execute default to setting WarningsAsError to make sure tests are not accidentally causing warnings.
2020-12-21Fix parsing Behavior in ExitCode element.Sean Hall1-2/+17
2020-12-21Add CanExtractBundleWithDetachedContainer test.Nir Bar10-5/+130
2020-12-194862 - Disallow Burn Variables that are Hidden and Persisted.Sean Hall5-2/+36
2020-12-19Add more failing tests and label them with the issue number.Sean Hall7-6/+138
2020-12-18Enable XML doc.Sean Hall76-162/+471
2020-12-17[Linux] Fix newline handling in help message.Simon Tatham1-2/+4
The current help message for `wix` itself doesn't end in a newline. On Windows that's only a minor oddity because command prompts are typically preceded by a newline anyway; on Linux, they're typically not, so it's much more unfriendly to leave the shell prompt at the end of a line. Also, generating newlines using Console.WriteLine instead of an explicit `\r\n` means they automatically adapt to the local platform's newline convention.
2020-12-16Canonicalize Payload/@Name.Sean Hall8-10/+174
2020-12-14WIXBUG:6299 - Fix OverflowException in ReadUInt32.Sean Hall6-5/+96
2020-12-14Enable CheckForOverflowUnderflow.Sean Hall1-0/+1
2020-12-12Fix merge module decompilation timing.Bob Arnson2-8/+9
2020-12-09Add test to verify primary feature select in component categories.Bob Arnson5-0/+84
2020-12-09Fix copy paste error.Sean Hall1-1/+1
2020-12-08WIXFEAT:6209 - Move BA entry point to its own element.Sean Hall9-59/+101
2020-12-08Require SourceFile for BundleExtension.Sean Hall1-14/+1
2020-12-08Always parse extension attributes in ParsePayloadElementContent.Sean Hall1-22/+20
2020-12-08Remove dead code.Sean Hall1-34/+3
2020-12-08Decompiling null GUID should set `Guid=""` to match.Bob Arnson6-1/+28
2020-12-02MSI transaction cleanup.Sean Hall9-15/+212
2020-11-16Support an empty multiString registry valueBob Arnson3-7/+4
2020-11-09Obsolete long-deprecated elements and attributes.Bob Arnson4-135/+9
2020-11-09Catch more former-supported-but-now-illegal inner text.Bob Arnson1-0/+2
2020-11-02Update GitVersioning.Sean Hall5-5/+5
2020-10-29Strong-name sign WiX assemblies.Bob Arnson4-1/+13
2020-10-28A bit of cleanup on now-defunct Product element references.Bob Arnson3-6/+7
2020-10-24One shiny NuGet package, please and thank you.Sean Hall1-0/+1
2020-10-24Reorganize Product/Package to Package/SummaryInformation.Bob Arnson40-530/+473
2020-10-14Add failing tests.Sean Hall4-0/+72
2020-10-12Add CreateFolders standard action...Bob Arnson3-0/+5
...when there are Component symbols to install.
2020-10-08Add the decompiled package's platform to the DecompileResult.Bob Arnson3-25/+47
2020-09-30 Add error message for cases where inner text used to be used.Bob Arnson6-10/+47
2020-09-19Remove 32-bit ARM support.Bob Arnson8-61/+8
2020-09-06Replace BinaryKey with BinaryRef and FileKey with FileRef.Bob Arnson6-25/+22
2020-09-01Fix typo.Bob Arnson2-7/+7
2020-09-01Fix check for valid 8.3 names for >3 extensions.Bob Arnson3-1/+9
2020-08-26A couple of minor decompiler fixes.Bob Arnson1-2/+2
2020-08-24Fixed custom action null column decompilation.Bob Arnson1-1/+1
2020-08-24Update decompiler to use XDocument rather than generated classes.Bob Arnson9-5230/+3427
- Use CompareXml for diffing. - Change CustomAction/@ScriptFile to @ScriptSourceFile.
2020-08-17Only target all frameworks in ReleaseSean Hall5-5/+10