From 5392cf57c09bddde7157e5b26c5c2a013f819ead Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Fri, 1 Mar 2019 11:12:52 -0800 Subject: Integrate interface-only WixToolset.Extensibility change --- src/WixToolset.Core/Bind/FileResolver.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/WixToolset.Core/Bind/FileResolver.cs') diff --git a/src/WixToolset.Core/Bind/FileResolver.cs b/src/WixToolset.Core/Bind/FileResolver.cs index 01dfe36c..a67d784d 100644 --- a/src/WixToolset.Core/Bind/FileResolver.cs +++ b/src/WixToolset.Core/Bind/FileResolver.cs @@ -1,4 +1,4 @@ -// 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. +// 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.Bind { @@ -14,24 +14,24 @@ namespace WixToolset.Core.Bind { private const string BindPathOpenString = "!(bindpath."; - private FileResolver(IEnumerable bindPaths) + private FileResolver(IEnumerable bindPaths) { - this.BindPaths = (bindPaths ?? Array.Empty()).ToLookup(b => b.Stage); + this.BindPaths = (bindPaths ?? Array.Empty()).ToLookup(b => b.Stage); this.RebaseTarget = this.BindPaths[BindStage.Target].Any(); this.RebaseUpdated = this.BindPaths[BindStage.Updated].Any(); } - public FileResolver(IEnumerable bindPaths, IEnumerable extensions) : this(bindPaths) + public FileResolver(IEnumerable bindPaths, IEnumerable extensions) : this(bindPaths) { this.ResolverExtensions = extensions ?? Array.Empty(); } - public FileResolver(IEnumerable bindPaths, IEnumerable extensions) : this(bindPaths) + public FileResolver(IEnumerable bindPaths, IEnumerable extensions) : this(bindPaths) { this.LibrarianExtensions = extensions ?? Array.Empty(); } - private ILookup BindPaths { get; } + private ILookup BindPaths { get; } public bool RebaseTarget { get; } -- cgit v1.2.3-55-g6feb