blob: 650e7fc10b1c1be560555208bdcf2607bf623f7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
// 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;
public interface IBindContext
{
IWixToolsetServiceProvider ServiceProvider { get; }
int CabbingThreadCount { get; set; }
string CabCachePath { get; set; }
int Codepage { get; set; }
CompressionLevel? DefaultCompressionLevel { get; set; }
IEnumerable<IDelayedField> DelayedFields { get; set; }
IEnumerable<IExpectedExtractFile> ExpectedEmbeddedFiles { get; set; }
IEnumerable<IBinderExtension> Extensions { get; set; }
IEnumerable<IFileSystemExtension> FileSystemExtensions { get; set; }
IEnumerable<string> Ices { get; set; }
string IntermediateFolder { get; set; }
Intermediate IntermediateRepresentation { get; set; }
string OutputPath { get; set; }
PdbType PdbType { get; set; }
string PdbPath { get; set; }
IEnumerable<string> SuppressIces { get; set; }
bool SuppressValidation { get; set; }
bool SuppressLayout { get; set; }
CancellationToken CancellationToken { get; set; }
}
}
|