main
cs 17 lines 598 Bytes
Raw
1 // 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.
2
3 namespace WixToolset.Extensibility
4 {
5 using WixToolset.Extensibility.Data;
6
7 /// <summary>
8 /// Interface all file system extensions implement.
9 /// </summary>
10 public interface IFileSystemExtension
11 {
12 #pragma warning disable 1591 // TODO: add documentation
13 void Initialize(IFileSystemContext context);
14
15 bool? CompareFiles(string targetFile, string updatedFile);
16 }
17 }