// 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 IBindContext { IServiceProvider ServiceProvider { get; } int CabbingThreadCount { get; set; } string CabCachePath { get; set; } int Codepage { get; set; } CompressionLevel? DefaultCompressionLevel { get; set; } IEnumerable DelayedFields { get; set; } IEnumerable ExpectedEmbeddedFiles { get; set; } IEnumerable Extensions { get; set; } IEnumerable FileSystemExtensions { get; set; } IEnumerable Ices { get; set; } string IntermediateFolder { get; set; } Intermediate IntermediateRepresentation { get; set; } string OutputPath { get; set; } string OutputPdbPath { get; set; } IEnumerable SuppressIces { get; set; } bool SuppressValidation { get; set; } } }