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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
// Copyright (C) 2025 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
using System;
using System.Collections;
using System.Collections.Concurrent;
using System.Collections.Generic;
using Microsoft.Build.Framework;
namespace QtVsTools.Test.QtMsBuild.Tasks
{
internal class MockBuildEngine : IBuildEngine4
{
private ConcurrentDictionary<object, object> TaskObject = new();
public void ResetTaskObjects()
{
TaskObject.Clear();
}
public void RegisterTaskObject(object key, object obj, RegisteredTaskObjectLifetime lifetime, bool allowEarlyCollection)
{
TaskObject[key] = obj;
}
public object UnregisterTaskObject(object key, RegisteredTaskObjectLifetime lifetime)
{
return TaskObject.TryRemove(key, out var obj) switch
{
true => obj,
false => null
};
}
public object GetRegisteredTaskObject(object key, RegisteredTaskObjectLifetime lifetime)
{
return TaskObject.TryGetValue(key, out var obj) switch
{
true => obj,
false => null
};
}
public bool IsRunningMultipleNodes => throw new NotImplementedException();
public bool ContinueOnError => throw new NotImplementedException();
public int LineNumberOfTaskNode => throw new NotImplementedException();
public int ColumnNumberOfTaskNode => throw new NotImplementedException();
public string ProjectFileOfTaskNode => throw new NotImplementedException();
public bool BuildProjectFile(string projectFileName, string[] targetNames, IDictionary globalProperties, IDictionary targetOutputs, string toolsVersion)
{
throw new NotImplementedException();
}
public bool BuildProjectFile(string projectFileName, string[] targetNames, IDictionary globalProperties, IDictionary targetOutputs)
{
throw new NotImplementedException();
}
public BuildEngineResult BuildProjectFilesInParallel(string[] projectFileNames, string[] targetNames, IDictionary[] globalProperties, IList<string>[] removeGlobalProperties, string[] toolsVersion, bool returnTargetOutputs)
{
throw new NotImplementedException();
}
public bool BuildProjectFilesInParallel(string[] projectFileNames, string[] targetNames, IDictionary[] globalProperties, IDictionary[] targetOutputsPerProject, string[] toolsVersion, bool useResultsCache, bool unloadProjectsOnCompletion)
{
throw new NotImplementedException();
}
public void LogCustomEvent(CustomBuildEventArgs e)
{
throw new NotImplementedException();
}
public void LogErrorEvent(BuildErrorEventArgs e)
{
throw new NotImplementedException();
}
public void LogMessageEvent(BuildMessageEventArgs e)
{
throw new NotImplementedException();
}
public void LogWarningEvent(BuildWarningEventArgs e)
{
throw new NotImplementedException();
}
public void Reacquire()
{
throw new NotImplementedException();
}
public void Yield()
{
throw new NotImplementedException();
}
}
}
|