forked from dotnet/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GenerateToolsSettingsFile.cs
46 lines (39 loc) · 1.61 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
41
42
43
44
45
46
// 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.Xml.Linq;
using System.IO;
using System;
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()
{
using (StringWriter writer = new StringWriter())
{
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")))));
}
}
}