diff options
Diffstat (limited to 'src/internal')
4 files changed, 17 insertions, 6 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 | ||
diff --git a/src/internal/WixInternal.TestSupport/Builder.cs b/src/internal/WixInternal.TestSupport/Builder.cs index aee5a8cf..c06aaf3b 100644 --- a/src/internal/WixInternal.TestSupport/Builder.cs +++ b/src/internal/WixInternal.TestSupport/Builder.cs | |||
| @@ -56,6 +56,7 @@ namespace WixInternal.TestSupport | |||
| 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, |
| @@ -89,6 +90,7 @@ namespace WixInternal.TestSupport | |||
| 89 | { | 90 | { |
| 90 | "msi", | 91 | "msi", |
| 91 | "validate", | 92 | "validate", |
| 93 | "-acceptEula", "wix" + SomeVerInfo.Major, | ||
| 92 | "-intermediateFolder", intermediateFolder, | 94 | "-intermediateFolder", intermediateFolder, |
| 93 | outputPath, | 95 | outputPath, |
| 94 | }; | 96 | }; |
| @@ -120,6 +122,7 @@ namespace WixInternal.TestSupport | |||
| 120 | { | 122 | { |
| 121 | "build", | 123 | "build", |
| 122 | "-o", outputPath, | 124 | "-o", outputPath, |
| 125 | "-acceptEula", "wix" + SomeVerInfo.Major, | ||
| 123 | "-intermediateFolder", intermediateFolder, | 126 | "-intermediateFolder", intermediateFolder, |
| 124 | }; | 127 | }; |
| 125 | 128 | ||
| @@ -149,8 +152,8 @@ namespace WixInternal.TestSupport | |||
| 149 | { | 152 | { |
| 150 | firstBuildArgs = new List<string> | 153 | firstBuildArgs = new List<string> |
| 151 | { | 154 | { |
| 152 | "msi", | 155 | "msi", "validate", |
| 153 | "validate", | 156 | "-acceptEula", "wix" + SomeVerInfo.Major, |
| 154 | "-intermediateFolder", intermediateFolder, | 157 | "-intermediateFolder", intermediateFolder, |
| 155 | outputPath, | 158 | outputPath, |
| 156 | }; | 159 | }; |
| @@ -161,6 +164,7 @@ namespace WixInternal.TestSupport | |||
| 161 | // Decompile built output. | 164 | // Decompile built output. |
| 162 | var decompileArgs = new List<string> | 165 | var decompileArgs = new List<string> |
| 163 | { | 166 | { |
| 167 | "-acceptEula", "wix" + SomeVerInfo.Major, | ||
| 164 | "msi", "decompile", | 168 | "msi", "decompile", |
| 165 | outputPath, | 169 | outputPath, |
| 166 | "-intermediateFolder", decompileIntermediateFolder, | 170 | "-intermediateFolder", decompileIntermediateFolder, |
| @@ -181,6 +185,7 @@ namespace WixInternal.TestSupport | |||
| 181 | { | 185 | { |
| 182 | "build", | 186 | "build", |
| 183 | decompilePath, | 187 | decompilePath, |
| 188 | "-acceptEula", "wix" + SomeVerInfo.Major, | ||
| 184 | "-o", decompileBuildPath, | 189 | "-o", decompileBuildPath, |
| 185 | "-intermediateFolder", decompileIntermediateFolder | 190 | "-intermediateFolder", decompileIntermediateFolder |
| 186 | }; | 191 | }; |
diff --git a/src/internal/WixInternal.TestSupport/WixInternal.TestSupport.csproj b/src/internal/WixInternal.TestSupport/WixInternal.TestSupport.csproj index 4e1c3c26..253202d4 100644 --- a/src/internal/WixInternal.TestSupport/WixInternal.TestSupport.csproj +++ b/src/internal/WixInternal.TestSupport/WixInternal.TestSupport.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 | ||
