aboutsummaryrefslogtreecommitdiff
path: root/src/internal/WixInternal.MSTestSupport
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2026-01-19 17:02:30 -0800
committerRob Mensching <rob@firegiant.com>2026-01-21 12:47:56 -0800
commit6e5d4330049dce6a91327d2ad36790a1ea34db3f (patch)
treecf96c8c22cec7d42a25ebfcb6da14f7da627c142 /src/internal/WixInternal.MSTestSupport
parent50de1c4ee7a56e47a06c44769cea5aa2457a829b (diff)
downloadwix-6e5d4330049dce6a91327d2ad36790a1ea34db3f.tar.gz
wix-6e5d4330049dce6a91327d2ad36790a1ea34db3f.tar.bz2
wix-6e5d4330049dce6a91327d2ad36790a1ea34db3f.zip
Require "accept EULA"
Resolves 9196
Diffstat (limited to 'src/internal/WixInternal.MSTestSupport')
-rw-r--r--src/internal/WixInternal.MSTestSupport/Builder.cs12
-rw-r--r--src/internal/WixInternal.MSTestSupport/WixInternal.MSTestSupport.csproj1
2 files changed, 9 insertions, 4 deletions
diff --git a/src/internal/WixInternal.MSTestSupport/Builder.cs b/src/internal/WixInternal.MSTestSupport/Builder.cs
index 62f2891b..c671500e 100644
--- a/src/internal/WixInternal.MSTestSupport/Builder.cs
+++ b/src/internal/WixInternal.MSTestSupport/Builder.cs
@@ -56,6 +56,7 @@ namespace WixInternal.MSTestSupport
56 56
57 var args = new List<string> 57 var args = new List<string>
58 { 58 {
59 "-acceptEula", "wix" + SomeVerInfo.Major,
59 "build", 60 "build",
60 "-o", outputPath, 61 "-o", outputPath,
61 "-intermediateFolder", intermediateFolder, 62 "-intermediateFolder", intermediateFolder,
@@ -87,8 +88,8 @@ namespace WixInternal.MSTestSupport
87 { 88 {
88 args = new List<string> 89 args = new List<string>
89 { 90 {
90 "msi", 91 "msi", "validate",
91 "validate", 92 "-acceptEula", "wix" + SomeVerInfo.Major,
92 "-intermediateFolder", intermediateFolder, 93 "-intermediateFolder", intermediateFolder,
93 outputPath, 94 outputPath,
94 }; 95 };
@@ -120,6 +121,7 @@ namespace WixInternal.MSTestSupport
120 { 121 {
121 "build", 122 "build",
122 "-o", outputPath, 123 "-o", outputPath,
124 "-acceptEula", "wix" + SomeVerInfo.Major,
123 "-intermediateFolder", intermediateFolder, 125 "-intermediateFolder", intermediateFolder,
124 }; 126 };
125 127
@@ -149,8 +151,8 @@ namespace WixInternal.MSTestSupport
149 { 151 {
150 firstBuildArgs = new List<string> 152 firstBuildArgs = new List<string>
151 { 153 {
152 "msi", 154 "msi", "validate",
153 "validate", 155 "-acceptEula", "wix" + SomeVerInfo.Major,
154 "-intermediateFolder", intermediateFolder, 156 "-intermediateFolder", intermediateFolder,
155 outputPath, 157 outputPath,
156 }; 158 };
@@ -163,6 +165,7 @@ namespace WixInternal.MSTestSupport
163 { 165 {
164 "msi", "decompile", 166 "msi", "decompile",
165 outputPath, 167 outputPath,
168 "-acceptEula", "wix" + SomeVerInfo.Major,
166 "-intermediateFolder", decompileIntermediateFolder, 169 "-intermediateFolder", decompileIntermediateFolder,
167 "-x", decompileExtractFolder, 170 "-x", decompileExtractFolder,
168 "-o", decompilePath 171 "-o", decompilePath
@@ -182,6 +185,7 @@ namespace WixInternal.MSTestSupport
182 "build", 185 "build",
183 decompilePath, 186 decompilePath,
184 "-o", decompileBuildPath, 187 "-o", decompileBuildPath,
188 "-acceptEula", "wix" + SomeVerInfo.Major,
185 "-intermediateFolder", decompileIntermediateFolder 189 "-intermediateFolder", decompileIntermediateFolder
186 }; 190 };
187 191
diff --git a/src/internal/WixInternal.MSTestSupport/WixInternal.MSTestSupport.csproj b/src/internal/WixInternal.MSTestSupport/WixInternal.MSTestSupport.csproj
index 6edc92c3..799190d9 100644
--- a/src/internal/WixInternal.MSTestSupport/WixInternal.MSTestSupport.csproj
+++ b/src/internal/WixInternal.MSTestSupport/WixInternal.MSTestSupport.csproj
@@ -11,6 +11,7 @@
11 <CreateDocumentationFile>true</CreateDocumentationFile> 11 <CreateDocumentationFile>true</CreateDocumentationFile>
12 <NoWarn>$(NoWarn);CS1591</NoWarn> 12 <NoWarn>$(NoWarn);CS1591</NoWarn>
13 <SignOutput>false</SignOutput> 13 <SignOutput>false</SignOutput>
14 <IncludeSomeVerInfo>true</IncludeSomeVerInfo>
14 <IsWixTestSupportProject>true</IsWixTestSupportProject> 15 <IsWixTestSupportProject>true</IsWixTestSupportProject>
15 </PropertyGroup> 16 </PropertyGroup>
16 17