From db6dd40daf44e0f06a9ff5f78ea9601138024583 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Thu, 26 Jul 2018 23:51:12 -0700 Subject: Remove unnecessary code from Data Less code in the "rootest" repo is a good thing. --- src/WixToolset.Data/Common.cs | 40 ----------------------- src/WixToolset.Data/WixFileNotFoundException.cs | 43 ------------------------- 2 files changed, 83 deletions(-) delete mode 100644 src/WixToolset.Data/Common.cs delete mode 100644 src/WixToolset.Data/WixFileNotFoundException.cs diff --git a/src/WixToolset.Data/Common.cs b/src/WixToolset.Data/Common.cs deleted file mode 100644 index f75ad33e..00000000 --- a/src/WixToolset.Data/Common.cs +++ /dev/null @@ -1,40 +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.Data -{ - using System; - using System.IO; - using System.Security.Cryptography; - using System.Text; - using System.Text.RegularExpressions; - using System.Xml.Linq; - - internal static class Common - { - public const int IntegerNotSet = Int32.MinValue; - - internal static readonly XNamespace W3SchemaPrefix = "http://www.w3.org/"; - - internal static readonly string[] ReservedFileNames = { "CON", "PRN", "AUX", "NUL", "COM1", "COM2", "COM3", "COM4", "COM5", "COM6", "COM7", "COM8", "COM9", "LPT1", "LPT2", "LPT3", "LPT4", "LPT5", "LPT6", "LPT7", "LPT8", "LPT9" }; - - internal static string GetFileHash(FileInfo fileInfo) - { - byte[] hashBytes; - using (SHA1Managed managed = new SHA1Managed()) - { - using (FileStream stream = fileInfo.OpenRead()) - { - hashBytes = managed.ComputeHash(stream); - } - } - - StringBuilder sb = new StringBuilder(); - for (int i = 0; i < hashBytes.Length; i++) - { - sb.AppendFormat("{0:X2}", hashBytes[i]); - } - - return sb.ToString(); - } - } -} diff --git a/src/WixToolset.Data/WixFileNotFoundException.cs b/src/WixToolset.Data/WixFileNotFoundException.cs deleted file mode 100644 index c497253c..00000000 --- a/src/WixToolset.Data/WixFileNotFoundException.cs +++ /dev/null @@ -1,43 +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.Data -{ - using System; - - /// - /// WixException thrown when a file cannot be found. - /// - [Serializable] - public sealed class WixFileNotFoundException : WixException - { - /// - /// Instantiate a new WixFileNotFoundException. - /// - /// Source line information pertaining to the file that cannot be found. - /// The file that could not be found. - public WixFileNotFoundException(SourceLineNumber sourceLineNumbers, string file) : - base(ErrorMessages.FileNotFound(sourceLineNumbers, file)) - { - } - - /// - /// Instantiate a new WixFileNotFoundException. - /// - /// The file that could not be found. - /// The type of file that cannot be found. - public WixFileNotFoundException(string file, string fileType) : this(null, file, fileType) - { - } - - /// - /// Instantiate a new WixFileNotFoundException. - /// - /// Source line information pertaining to the file that cannot be found. - /// The file that could not be found. - /// The type of file that cannot be found. - public WixFileNotFoundException(SourceLineNumber sourceLineNumbers, string file, string fileType) : - base(ErrorMessages.FileNotFound(sourceLineNumbers, file, fileType)) - { - } - } -} -- cgit v1.2.3-55-g6feb