From 6f6e4ced9f398ff37a44b91fdba62479cde29d06 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Thu, 9 Jun 2022 15:30:48 -0500 Subject: Implement ArpEntry flavored ExePackage. 6772 --- .../WixToolsetTest.BurnE2E/Utilities/TestExeTool.cs | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/test/burn/WixToolsetTest.BurnE2E/Utilities/TestExeTool.cs (limited to 'src/test/burn/WixToolsetTest.BurnE2E/Utilities/TestExeTool.cs') diff --git a/src/test/burn/WixToolsetTest.BurnE2E/Utilities/TestExeTool.cs b/src/test/burn/WixToolsetTest.BurnE2E/Utilities/TestExeTool.cs new file mode 100644 index 00000000..a02299d7 --- /dev/null +++ b/src/test/burn/WixToolsetTest.BurnE2E/Utilities/TestExeTool.cs @@ -0,0 +1,17 @@ +// 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 WixTestTools +{ + using System.IO; + using WixBuildTools.TestSupport; + + public class TestExeTool : TestTool + { + private static readonly string TestExePath32 = Path.Combine(TestData.Get(), "win-x86", "TestExe.exe"); + + public TestExeTool() + : base(TestExePath32) + { + } + } +} -- cgit v1.2.3-55-g6feb