-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathGenerateClsidMap.cs
More file actions
63 lines (56 loc) · 2.41 KB
/
Copy pathGenerateClsidMap.cs
File metadata and controls
63 lines (56 loc) · 2.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#nullable disable
using System.Reflection.Metadata;
using System.Reflection.PortableExecutable;
using Microsoft.Build.Framework;
using Microsoft.NET.HostModel.ComHost;
namespace Microsoft.NET.Build.Tasks
{
[MSBuildMultiThreadableTask]
public class GenerateClsidMap : TaskBase, IMultiThreadableTask
{
[Required]
public string IntermediateAssembly { get; set; }
[Required]
public string ClsidMapDestinationPath { get; set; }
public TaskEnvironment TaskEnvironment { get; set; } = TaskEnvironment.Fallback;
protected override void ExecuteCore()
{
AbsolutePath assemblyPath = TaskEnvironment.GetAbsolutePath(IntermediateAssembly);
AbsolutePath clsidMapPath = TaskEnvironment.GetAbsolutePath(ClsidMapDestinationPath);
using (var assemblyStream = new FileStream(assemblyPath, FileMode.Open, FileAccess.Read, FileShare.Delete | FileShare.Read))
{
try
{
using (PEReader peReader = new(assemblyStream))
{
if (peReader.HasMetadata)
{
MetadataReader reader = peReader.GetMetadataReader();
if (!reader.IsAssembly)
{
Log.LogError(Strings.ClsidMapInvalidAssembly, IntermediateAssembly);
return;
}
ClsidMap.Create(reader, clsidMapPath);
}
}
}
catch (MissingGuidException missingGuid)
{
Log.LogError(Strings.ClsidMapExportedTypesRequireExplicitGuid, missingGuid.TypeName);
}
catch (ConflictingGuidException conflictingGuid)
{
Log.LogError(Strings.ClsidMapConflictingGuids, conflictingGuid.TypeName1, conflictingGuid.TypeName2, conflictingGuid.Guid.ToString());
}
catch (BadImageFormatException)
{
Log.LogError(Strings.ClsidMapInvalidAssembly, IntermediateAssembly);
return;
}
}
}
}
}