forked from dotnet/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GenerateToolsSettingsFile.cs
40 lines (33 loc) · 1.43 KB
/
GenerateToolsSettingsFile.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
// 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;
namespace Microsoft.NET.Build.Tasks
{
public class GenerateToolsSettingsFile : TaskBase
{
// bump whenever the format changes such that it will break old consumers
private static readonly int _formatVersion = 1;
[Required]
public string EntryPointRelativePath { get; set; }
[Required]
public string CommandName { get; set; }
[Required]
public string ToolsSettingsFilePath { get; set; }
protected override void ExecuteCore()
{
GenerateDocument(EntryPointRelativePath, CommandName).Save(ToolsSettingsFilePath);
}
internal static XDocument GenerateDocument(string entryPointRelativePath, string commandName)
{
return new XDocument(
new XDeclaration(version: null, encoding: null, standalone: null),
new XElement("DotNetCliTool",
new XAttribute("Version", _formatVersion),
new XElement("Commands",
new XElement("Command",
new XAttribute("Name", commandName),
new XAttribute("EntryPoint", entryPointRelativePath),
new XAttribute("Runner", "dotnet")))));
}
}
}