forked from dotnet/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EmbedAppNameInHost.cs
40 lines (33 loc) · 1.25 KB
/
EmbedAppNameInHost.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
// 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 Microsoft.Build.Framework;
using System.IO;
using System.Text;
namespace Microsoft.NET.Build.Tasks
{
/// <summary>
/// Embeds the App Name into the AppHost.exe
/// </summary>
public class EmbedAppNameInHost : TaskBase
{
[Required]
public string AppHostSourcePath { get; set; }
[Required]
public string AppHostDestinationDirectoryPath { get; set; }
[Required]
public string AppBinaryName { get; set; }
[Output]
public string ModifiedAppHostPath { get; set; }
protected override void ExecuteCore()
{
var hostExtension = Path.GetExtension(AppHostSourcePath);
var appbaseName = Path.GetFileNameWithoutExtension(AppBinaryName);
var destinationDirectory = Path.GetFullPath(AppHostDestinationDirectoryPath);
ModifiedAppHostPath = Path.Combine(destinationDirectory, $"{appbaseName}{hostExtension}");
AppHost.Create(
AppHostSourcePath,
ModifiedAppHostPath,
AppBinaryName);
}
}
}