From ff881bbb67a85db1878add8e7795a263dbb78633 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Wed, 3 Jun 2020 20:12:17 +1000 Subject: Reenable RunAsSeparateProcess. Publish the parts of WixToolset.MSBuild to individual folders and then manually recombine them, because otherwise dotnet publish was mysteriously bringing in the wrong versions of dlls. Disable tests in appveyor.yml because Appveyor was running the tests again at the end of the build. --- src/test/WixToolsetTest.MSBuild/MsbuildFixture.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/test/WixToolsetTest.MSBuild') diff --git a/src/test/WixToolsetTest.MSBuild/MsbuildFixture.cs b/src/test/WixToolsetTest.MSBuild/MsbuildFixture.cs index aecc607a..163e8402 100644 --- a/src/test/WixToolsetTest.MSBuild/MsbuildFixture.cs +++ b/src/test/WixToolsetTest.MSBuild/MsbuildFixture.cs @@ -291,11 +291,11 @@ namespace WixToolsetTest.MSBuild [Theory] [InlineData(BuildSystem.DotNetCoreSdk, null)] - //[InlineData(BuildSystem.DotNetCoreSdk, true)] + [InlineData(BuildSystem.DotNetCoreSdk, true)] [InlineData(BuildSystem.MSBuild, null)] - //[InlineData(BuildSystem.MSBuild, true)] + [InlineData(BuildSystem.MSBuild, true)] [InlineData(BuildSystem.MSBuild64, null)] - //[InlineData(BuildSystem.MSBuild64, true)] + [InlineData(BuildSystem.MSBuild64, true)] public void CanBuildSimpleMsiPackageAsWixipl(BuildSystem buildSystem, bool? outOfProc) { var sourceFolder = TestData.Get(@"TestData\SimpleMsiPackage\MsiPackage"); @@ -381,8 +381,8 @@ namespace WixToolsetTest.MSBuild [Theory] [InlineData(BuildSystem.DotNetCoreSdk)] - //[InlineData(BuildSystem.MSBuild)] - //[InlineData(BuildSystem.MSBuild64)] + [InlineData(BuildSystem.MSBuild)] + [InlineData(BuildSystem.MSBuild64)] public void ReportsInnerExceptionForUnexpectedExceptions(BuildSystem buildSystem) { var sourceFolder = TestData.Get(@"TestData\SimpleMsiPackage\MsiPackage"); -- cgit v1.2.3-55-g6feb