// 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.Collections.Generic; using System.Threading; using WixToolset.Data; using WixToolset.Extensibility.Services; #pragma warning disable 1591 // TODO: add documentation public interface IPreprocessContext { IWixToolsetServiceProvider ServiceProvider { get; } IEnumerable Extensions { get; set; } IEnumerable 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 SourcePath { get; set; } IDictionary Variables { get; set; } SourceLineNumber CurrentSourceLineNumber { get; set; } CancellationToken CancellationToken { get; set; } } }