forked from dotnet/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGenerateClsidMap.cs
More file actions
51 lines (47 loc) · 1.74 KB
/
GenerateClsidMap.cs
File metadata and controls
51 lines (47 loc) · 1.74 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
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
using System.Reflection.Metadata;
using System.Reflection.PortableExecutable;
using System.Text;
using Microsoft.Build.Framework;
namespace Microsoft.NET.Build.Tasks
{
public class GenerateClsidMap : TaskBase
{
[Required]
public string IntermediateAssembly { get; set; }
[Required]
public string ClsidMapDestinationPath { get; set; }
protected override void ExecuteCore()
{
using (var assemblyStream = new FileStream(IntermediateAssembly, FileMode.Open, FileAccess.Read, FileShare.Delete | FileShare.Read))
{
try
{
using (PEReader peReader = new PEReader(assemblyStream))
{
if (peReader.HasMetadata)
{
MetadataReader reader = peReader.GetMetadataReader();
if (!reader.IsAssembly)
{
Log.LogError(Strings.ClsidMapInvalidAssembly, IntermediateAssembly);
return;
}
ClsidMap.Create(reader, ClsidMapDestinationPath);
}
}
}
catch (BadImageFormatException)
{
Log.LogError(Strings.ClsidMapInvalidAssembly, IntermediateAssembly);
return;
}
}
}
}
}