From e28fcc906046ed12a867b621fc0eabf75fd9db09 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Thu, 21 May 2020 23:08:52 -0700 Subject: Add support using mergmod.dll and its interfaces --- src/test/WixToolsetTest.Core.Native/MsmFixture.cs | 18 ++++++++++++++++++ .../WixToolsetTest.Core.Native.csproj | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 src/test/WixToolsetTest.Core.Native/MsmFixture.cs (limited to 'src/test') diff --git a/src/test/WixToolsetTest.Core.Native/MsmFixture.cs b/src/test/WixToolsetTest.Core.Native/MsmFixture.cs new file mode 100644 index 00000000..a1e42d94 --- /dev/null +++ b/src/test/WixToolsetTest.Core.Native/MsmFixture.cs @@ -0,0 +1,18 @@ +// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. + +namespace WixToolsetTest.CoreNative +{ + using WixToolset.Core.Native; + using Xunit; + + public class MsmFixture + { + [Fact] + public void CanCreateMsmInterface() + { + var msm = new MsmInterop(); + var merge = msm.GetMsmMerge(); + Assert.NotNull(merge); + } + } +} diff --git a/src/test/WixToolsetTest.Core.Native/WixToolsetTest.Core.Native.csproj b/src/test/WixToolsetTest.Core.Native/WixToolsetTest.Core.Native.csproj index 263712bb..14928112 100644 --- a/src/test/WixToolsetTest.Core.Native/WixToolsetTest.Core.Native.csproj +++ b/src/test/WixToolsetTest.Core.Native/WixToolsetTest.Core.Native.csproj @@ -3,7 +3,7 @@ - netcoreapp2.0 + netcoreapp2.1 false -- cgit v1.2.3-55-g6feb