blob: b07fb81f57c27c8a1ed69659b61373b91f5e4e75 (
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
|
// 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<IPreprocessorExtension> Extensions { get; set; }
IEnumerable<string> IncludeSearchPaths { get; set; }
/// <summary>
/// Gets the platform which the compiler will use when defaulting 64-bit attributes and elements.
/// </summary>
/// <value>The platform which the compiler will use when defaulting 64-bit attributes and elements.</value>
Platform Platform { get; set; }
string SourcePath { get; set; }
IDictionary<string, string> Variables { get; set; }
SourceLineNumber CurrentSourceLineNumber { get; set; }
CancellationToken CancellationToken { get; set; }
}
}
|