// 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 System.Xml.Linq; using WixToolset.Data; public interface ICompileContext { IServiceProvider ServiceProvider { get; } string CompilationId { get; set; } IEnumerable Extensions { get; set; } string OutputPath { get; set; } /// /// Gets or sets 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; } XDocument Source { get; set; } } }