-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathArgumentsHelper.cs
More file actions
23 lines (20 loc) · 887 Bytes
/
ArgumentsHelper.cs
File metadata and controls
23 lines (20 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (c) BootstrapBlazor & Argo Zhang (argo@live.ca). All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
// Website: https://www.blazor.zone or https://argozhang.github.io/
namespace BootstrapBlazor.CssBundler;
static class ArgumentsHelper
{
public static void PrintHelp()
{
Console.ForegroundColor = ConsoleColor.Cyan;
Console.WriteLine("Usage: BootstrapBlazorCssBundler [options]");
Console.WriteLine("Options:");
Console.WriteLine(" <bundler.json> ConfigFileFullPath D:\\Argo\\src\\BootstrapBlazor\\src\\BootstrapBlazor\\bundler.json");
Console.WriteLine();
Console.ForegroundColor = ConsoleColor.Gray;
}
public static string? ParseOptions(string[] args)
{
return args.Length > 0 ? args[0] : "";
}
}