Skip to content

Commit 06e08d7

Browse files
committed
Minor Updates
- Icon added - MetaNames on parameters.
1 parent 3951c97 commit 06e08d7

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

CLARiNET.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net5.0</TargetFramework>
66
<Authors>Whitley Media</Authors>
7+
<PackageIcon>CLARiNET.ico</PackageIcon>
8+
<PackageIconUrl />
9+
<ApplicationIcon>CLARiNET.ico</ApplicationIcon>
710
</PropertyGroup>
811

912
<ItemGroup>

CLARiNET.ico

13 KB
Binary file not shown.

CommandLineOptions.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,22 @@ namespace CLARiNET
99
{
1010
public class Options
1111
{
12-
[Value(index: 0,Required = false, HelpText = "Full path and file name for the CLAR")]
12+
[Value(index: 0,MetaName = "CLAR File", Required = false, HelpText = "Full path and file name for the CLAR")]
1313
public string ClarFile { get; set; }
1414

15-
[Value(index: 1, Required = false, HelpText = "Cloud Collection name")]
15+
[Value(index: 1, MetaName = "Collection", Required = false, HelpText = "Cloud Collection name")]
1616
public string CollectionName { get; set; }
1717

18-
[Value(index: 2, Required = false, HelpText = "Number associated with a Workday environment")]
18+
[Value(index: 2, MetaName = "Environment Number", Required = false, HelpText = "Number associated with a Workday environment (list all with -e parameter)")]
1919
public string EnvNum { get; set; }
2020

21-
[Value(index: 3, Required = false, HelpText = "Workday Tenant")]
21+
[Value(index: 3, MetaName = "Tenant", Required = false, HelpText = "Workday Tenant")]
2222
public string Tenant { get; set; }
2323

24-
[Value(index: 4, Required = false, HelpText = "Username")]
24+
[Value(index: 4, MetaName = "Username", Required = false, HelpText = "Username")]
2525
public string Username { get; set; }
2626

27-
[Value(index: 5, Required = false, HelpText = "Password")]
27+
[Value(index: 5, MetaName = "Password", Required = false, HelpText = "Password")]
2828
public string Password { get; set; }
2929

3030
[Option('e', "environments", Required = false,

0 commit comments

Comments
 (0)