forked from dotnet/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CreateComHost.cs
58 lines (51 loc) · 1.75 KB
/
CreateComHost.cs
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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using Microsoft.Build.Framework;
using Microsoft.NET.HostModel.ComHost;
namespace Microsoft.NET.Build.Tasks
{
public class CreateComHost : TaskBase
{
[Required]
public string ComHostSourcePath { get; set; }
[Required]
public string ComHostDestinationPath { get; set; }
[Required]
public string ClsidMapPath { get; set; }
public ITaskItem[] TypeLibraries { get; set; }
protected override void ExecuteCore()
{
try
{
if (!TypeLibraryDictionaryBuilder.TryCreateTypeLibraryIdDictionary(
TypeLibraries,
out Dictionary<int, string> typeLibIdMap,
out IEnumerable<string> errors))
{
foreach (string error in errors)
{
Log.LogError(error);
}
return;
}
ComHost.Create(
ComHostSourcePath,
ComHostDestinationPath,
ClsidMapPath,
typeLibIdMap);
}
catch (TypeLibraryDoesNotExistException ex)
{
Log.LogError(Strings.TypeLibraryDoesNotExist, ex.Path);
}
catch (InvalidTypeLibraryIdException ex)
{
Log.LogError(Strings.InvalidTypeLibraryId, ex.Id.ToString(), ex.Path);
}
catch (InvalidTypeLibraryException ex)
{
Log.LogError(Strings.InvalidTypeLibrary, ex.Path);
}
}
}
}