|
// 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 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);
}
}
}
}
|