From dbde9e7104b907bbbaea17e21247d8cafc8b3a4c Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Sat, 14 Oct 2017 16:12:07 -0700 Subject: Massive refactoring to introduce the concept of IBackend --- src/WixToolset.Core/Cab/WixEnumerateCab.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/WixToolset.Core/Cab/WixEnumerateCab.cs') diff --git a/src/WixToolset.Core/Cab/WixEnumerateCab.cs b/src/WixToolset.Core/Cab/WixEnumerateCab.cs index 017eeffb..0b4055d6 100644 --- a/src/WixToolset.Core/Cab/WixEnumerateCab.cs +++ b/src/WixToolset.Core/Cab/WixEnumerateCab.cs @@ -1,6 +1,6 @@ // 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 WixToolset.Cab +namespace WixToolset.Core.Cab { using System; using System.Collections.Generic; @@ -10,7 +10,7 @@ namespace WixToolset.Cab /// /// Wrapper class around interop with wixcab.dll to enumerate files from a cabinet. /// - internal sealed class WixEnumerateCab : IDisposable + public sealed class WixEnumerateCab : IDisposable { private bool disposed; private List fileInfoList; @@ -38,7 +38,7 @@ namespace WixToolset.Cab /// /// path to cabinet /// list of CabinetFileInfo - internal List Enumerate(string cabinetFile) + public List Enumerate(string cabinetFile) { this.fileInfoList = new List(); -- cgit v1.2.3-55-g6feb