// 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.Extensibility.Data { using System; using System.Collections.Generic; using WixToolset.Data; public interface IPreprocessContext { IServiceProvider ServiceProvider { get; } IEnumerable Extensions { get; set; } IList IncludeSearchPaths { get; set; } /// /// Gets the platform which the compiler will use when defaulting 64-bit attributes and elements. /// /// The platform which the compiler will use when defaulting 64-bit attributes and elements. Platform Platform { get; set; } string SourceFile { get; set; } IDictionary Variables { get; set; } SourceLineNumber CurrentSourceLineNumber { get; set; } } }