18 instantiations of TypeConstructionTuple
Microsoft.Build (18)
BackEnd\Components\Communications\SerializationContractInitializer.cs (18)
25
new
(typeof(GenericBuildTransferredException), (msg, inner) => new GenericBuildTransferredException(msg, inner)),
26
new
(typeof(SdkResolverException), (msg, inner) => new SdkResolverException(msg, inner)),
27
new
(typeof(SdkResolverServiceException), (msg, inner) => new SdkResolverServiceException(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(ProjectCache.ProjectCacheException), (msg, inner) => new ProjectCache.ProjectCacheException(msg, inner)),
36
new
(typeof(Experimental.ProjectCache.ProjectCacheException), (msg, inner) => new ProjectCache.ProjectCacheException(msg, inner)),
38
new
(typeof(InternalErrorException), InternalErrorException.CreateFromRemote),
39
new
(typeof(LoggerException), (msg, inner) => new LoggerException(msg, inner)),
40
new
(typeof(NodeFailedToLaunchException), (msg, inner) => new NodeFailedToLaunchException(msg, inner)),
41
new
(typeof(SchedulerCircularDependencyException), (msg, inner) => new SchedulerCircularDependencyException(msg, inner)),
42
new
(typeof(RegistryException), (msg, inner) => new RegistryException(msg, inner)),
43
new
(typeof(HostObjectException), (msg, inner) => new HostObjectException(msg, inner)),
44
new
(typeof(UnbuildableProjectTypeException), (msg, inner) => new UnbuildableProjectTypeException(msg, inner)),
45
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)