-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy path.merge_file_JsDg5L
More file actions
51 lines (38 loc) · 1.54 KB
/
.merge_file_JsDg5L
File metadata and controls
51 lines (38 loc) · 1.54 KB
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
47
48
49
50
51
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#nullable disable
using System.CommandLine;
using Microsoft.DotNet.Cli.Commands.MSBuild;
using Microsoft.DotNet.Cli.CommandLine;
using Microsoft.DotNet.Cli.Extensions;
using Microsoft.DotNet.Cli.Utils;
namespace Microsoft.DotNet.Cli.Commands.Store;
public class StoreCommand : MSBuildForwardingApp
{
private StoreCommand(IEnumerable<string> msbuildArgs, string msbuildPath = null)
: base(msbuildArgs, msbuildPath)
{
}
public static StoreCommand FromArgs(string[] args, string msbuildPath = null)
{
var result = Parser.Parse(["dotnet", "store", ..args]);
return FromParseResult(result, msbuildPath);
}
public static StoreCommand FromParseResult(ParseResult result, string msbuildPath = null)
{
List<string> msbuildArgs = ["--target:ComposeStore"];
result.ShowHelpOrErrorIfAppropriate();
if (!result.HasOption(StoreCommandParser.ManifestOption))
{
throw new GracefulException(CliCommandStrings.SpecifyManifests);
}
msbuildArgs.AddRange(result.OptionValuesToBeForwarded(StoreCommandParser.GetCommand()));
msbuildArgs.AddRange(result.GetValue(StoreCommandParser.Argument) ?? []);
return new StoreCommand(msbuildArgs, msbuildPath);
}
public static int Run(ParseResult parseResult)
{
parseResult.HandleDebugSwitch();
return FromParseResult(parseResult).Execute();
}
}