From 71c52d5af2293d3eb79882ce36b0411f81185c11 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Wed, 29 Nov 2017 22:03:26 -0800 Subject: Fix source path and cabinet processing --- src/WixToolset.Core/Cab/CabinetFileInfo.cs | 45 ------------------------------ 1 file changed, 45 deletions(-) delete mode 100644 src/WixToolset.Core/Cab/CabinetFileInfo.cs (limited to 'src/WixToolset.Core/Cab/CabinetFileInfo.cs') diff --git a/src/WixToolset.Core/Cab/CabinetFileInfo.cs b/src/WixToolset.Core/Cab/CabinetFileInfo.cs deleted file mode 100644 index 816f9e3e..00000000 --- a/src/WixToolset.Core/Cab/CabinetFileInfo.cs +++ /dev/null @@ -1,45 +0,0 @@ -// 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.Core.Cab -{ - /// - /// Properties of a file in a cabinet. - /// - public sealed class CabinetFileInfo - { - /// - /// Constructs CabinetFileInfo - /// - /// File Id - /// Last modified date (MS-DOS time) - /// Last modified time (MS-DOS time) - public CabinetFileInfo(string fileId, ushort date, ushort time, int size) - { - this.FileId = fileId; - this.Date = date; - this.Time = time; - this.Size = size; - } - - /// - /// Gets the file Id of the file. - /// - /// file Id - public string FileId { get; } - - /// - /// Gets modified date (DOS format). - /// - public ushort Date { get; } - - /// - /// Gets modified time (DOS format). - /// - public ushort Time { get; } - - /// - /// Gets the size of the file in bytes. - /// - public int Size { get; } - } -} -- cgit v1.2.3-55-g6feb