1 write to Type
MSBuildTaskHost (1)
LoadedType.cs (1)
35
Type
= type;
11 references to Type
MSBuildTaskHost (11)
LoadedType.cs (5)
110
HasLoadInSeparateAppDomainAttribute = this.
Type
.GetTypeInfo().IsDefined(typeof(LoadInSeparateAppDomainAttribute), true /* inherited */);
111
HasSTAThreadAttribute = this.
Type
.GetTypeInfo().IsDefined(typeof(RunInSTAAttribute), true /* inherited */);
112
IsMarshalByRef = this.
Type
.IsMarshalByRef;
141
if (String.Equals("Microsoft.Build.Tasks.Xaml.PartialClassGenerationTask",
Type
.FullName, StringComparison.OrdinalIgnoreCase))
143
AssemblyName assemblyName =
Type
.GetTypeInfo().Assembly.GetName();
TaskLoader.cs (6)
127
return (ITask?)Activator.CreateInstance(loadedType.
Type
);
133
taskInstanceInOtherAppDomain = (ITask)taskAppDomain.CreateInstanceFromAndUnwrap(loadedType.Assembly.AssemblyFile, loadedType.
Type
.FullName);
141
if (taskType != loadedType.
Type
)
149
loadedType.
Type
.GetTypeInfo().Assembly.Location);
156
taskInstanceInOtherAppDomain = (ITask)taskAppDomain.CreateInstanceAndUnwrap(loadedType.
Type
.GetTypeInfo().Assembly.FullName, loadedType.
Type
.FullName);