blob: c16c8b5a02671add9a4a787de77168ba0e4541b9 (
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
51
52
53
54
55
|
// 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 Example.Extension
{
using System;
using System.Xml.Linq;
using WixToolset.Data;
using WixToolset.Extensibility;
internal class ExamplePreprocessorExtension : IPreprocessorExtension
{
public ExamplePreprocessorExtension()
{
}
public IPreprocessorCore Core { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
public string[] Prefixes => throw new NotImplementedException();
public string EvaluateFunction(string prefix, string function, string[] args)
{
throw new NotImplementedException();
}
public void Finish()
{
throw new NotImplementedException();
}
public string GetVariableValue(string prefix, string name)
{
throw new NotImplementedException();
}
public void Initialize()
{
throw new NotImplementedException();
}
public void PreprocessDocument(XDocument document)
{
throw new NotImplementedException();
}
public string PreprocessParameter(string name)
{
throw new NotImplementedException();
}
public bool ProcessPragma(SourceLineNumber sourceLineNumbers, string prefix, string pragma, string args, XContainer parent)
{
throw new NotImplementedException();
}
}
}
|