16 instantiations of TypeConstructionTuple
Microsoft.Build (16)
BackEnd\Components\Communications\SerializationContractInitializer.cs (16)
26
new
(typeof(GenericBuildTransferredException), (msg, inner) => new GenericBuildTransferredException(msg, inner)),
27
new
(typeof(SdkResolverException), (msg, inner) => new SdkResolverException(msg, inner)),
28
new
(typeof(BuildAbortedException), BuildAbortedException.CreateFromRemote),
29
new
(typeof(CircularDependencyException), (msg, inner) => new CircularDependencyException(msg, inner)),
30
new
(typeof(InternalLoggerException), (msg, inner) => new InternalLoggerException(msg, inner)),
31
new
(typeof(InvalidProjectFileException), (msg, inner) => new InvalidProjectFileException(msg, inner)),
32
new
(typeof(InvalidToolsetDefinitionException), (msg, inner) => new InvalidToolsetDefinitionException(msg, inner)),
33
new
(typeof(ProjectCacheException), (msg, inner) => new ProjectCacheException(msg, inner)),
34
new
(typeof(InternalErrorException), InternalErrorException.CreateFromRemote),
35
new
(typeof(LoggerException), (msg, inner) => new LoggerException(msg, inner)),
36
new
(typeof(NodeFailedToLaunchException), (msg, inner) => new NodeFailedToLaunchException(msg, inner)),
37
new
(typeof(SchedulerCircularDependencyException), (msg, inner) => new SchedulerCircularDependencyException(msg, inner)),
38
new
(typeof(RegistryException), (msg, inner) => new RegistryException(msg, inner)),
39
new
(typeof(HostObjectException), (msg, inner) => new HostObjectException(msg, inner)),
40
new
(typeof(UnbuildableProjectTypeException), (msg, inner) => new UnbuildableProjectTypeException(msg, inner)),
41
new
(typeof(CriticalTaskException), (msg, inner) => new CriticalTaskException(msg, inner)));
4 references to TypeConstructionTuple
Microsoft.Build.Framework (4)
BuildException\BuildExceptionSerializationHelper.cs (4)
37
internal static void InitializeSerializationContract(params
TypeConstructionTuple
[] exceptionsAllowlist)
39
InitializeSerializationContract((IEnumerable<
TypeConstructionTuple
>)exceptionsAllowlist);
42
internal static void InitializeSerializationContract(IEnumerable<
TypeConstructionTuple
> exceptionsAllowlist)
51
foreach (
TypeConstructionTuple
typeConstructionTuple in exceptionsAllowlist)