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