1 write to Type
Microsoft.Build (1)
LoadedType.cs (1)
34Type = type;
18 references to Type
Microsoft.Build (17)
Instance\TaskFactories\AssemblyTaskFactory.cs (3)
112get { return _loadedType.Type; } 446_taskLoggingContext?.TargetLoggingContext?.ProjectLoggingContext?.ProjectTelemetry?.TrackTaskSubclassing(_loadedType.Type, isMicrosoftOwned); 706if (_loadedType?.Type == null)
Instance\TaskFactories\TaskHostTask.cs (8)
254PropertyInfo parameter = _taskType.Type.GetProperty(property.Name, BindingFlags.Instance | BindingFlags.Public); 287_taskLoggingContext.LogComment(MessageImportance.Low, "ExecutingTaskInTaskHost", _taskType.Type.Name, _taskType.Assembly.AssemblyLocation, runtime, architecture); 296string taskLocation = AssemblyUtilities.GetAssemblyLocation(_taskType.Type.GetTypeInfo().Assembly); 317_taskType.Type.FullName, 558exceptionMessageArgs = [_taskType.Type.Name, 559AssemblyUtilities.GetAssemblyLocation(_taskType.Type.GetTypeInfo().Assembly), 660_taskLoggingContext.LogError(new BuildEventFileInfo(_taskLocation), "TaskHostAcquireFailed", _taskType.Type.Name, runtime, architecture, msbuildLocation); 664_taskLoggingContext.LogError(new BuildEventFileInfo(_taskLocation), "TaskHostNodeFailedToLaunch", _taskType.Type.Name, runtime, architecture, msbuildLocation, e.ErrorCode, e.Message);
Instance\TaskRegistry.cs (1)
1578factory = (ITaskFactory)Activator.CreateInstance(loadedType.Type);
LoadedType.cs (2)
176if (String.Equals("Microsoft.Build.Tasks.Xaml.PartialClassGenerationTask", Type.FullName, StringComparison.OrdinalIgnoreCase)) 178AssemblyName assemblyName = Type.GetTypeInfo().Assembly.GetName();
Logging\LoggerDescription.cs (2)
207logger = (IForwardingLogger)Activator.CreateInstance(loggerClass.Type); 218logger = (ILogger)Activator.CreateInstance(loggerClass.Type);
TaskLoader.cs (1)
127return (ITask?)Activator.CreateInstance(loadedType.Type);
Microsoft.Build.Engine.UnitTests (1)
BackEnd\AssemblyTaskFactory_Tests.cs (1)
217PropertyInfo[] comparisonInfo = comparisonType.Type.GetProperties(BindingFlags.Instance | BindingFlags.Public);