forked from dotnet/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGenerateRegFreeComManifest.cs
39 lines (33 loc) · 1.14 KB
/
GenerateRegFreeComManifest.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
// 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 GenerateRegFreeComManifest : TaskBase
{
[Required]
public string IntermediateAssembly { get; set; }
[Required]
public string ComHostName { get; set; }
[Required]
public string ClsidMapPath { get; set; }
[Required]
public string ComManifestPath { get; set; }
protected override void ExecuteCore()
{
RegFreeComManifest.CreateManifestFromClsidmap(
Path.GetFileNameWithoutExtension(IntermediateAssembly),
ComHostName,
FileUtilities.TryGetAssemblyVersion(IntermediateAssembly).ToString(),
ClsidMapPath,
ComManifestPath);
}
}
}