forked from dotnet/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCreateAppHost.cs
40 lines (33 loc) · 1.24 KB
/
CreateAppHost.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;
namespace Microsoft.NET.Build.Tasks
{
/// <summary>
/// Creates the runtime host to be used for an application.
/// This embeds the application DLL path into the apphost and performs additional customizations as requested.
/// </summary>
public class CreateAppHost : TaskBase
{
[Required]
public string AppHostSourcePath { get; set; }
[Required]
public string AppHostDestinationPath { get; set; }
[Required]
public string AppBinaryName { get; set; }
[Required]
public string IntermediateAssembly { get; set; }
public bool WindowsGraphicalUserInterface { get; set; }
protected override void ExecuteCore()
{
AppHost.Create(
AppHostSourcePath,
AppHostDestinationPath,
AppBinaryName,
windowsGraphicalUserInterface : WindowsGraphicalUserInterface,
intermediateAssembly: IntermediateAssembly,
log: Log);
}
}
}