Skip to content

Commit 049b919

Browse files
committed
Change default value for "file" argument to *.* instead of *.dcm
1 parent 191dfe6 commit 049b919

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

DcmFind/DcmFind.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<PackAsTool>true</PackAsTool>
88
<ToolCommandName>dcmfind</ToolCommandName>
99
<PackageOutputPath>./nupkg</PackageOutputPath>
10-
<Version>1.1.0</Version>
10+
<Version>1.2.0</Version>
1111
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1212
<RepositoryUrl>https://github.com/amoerie/dcmfind</RepositoryUrl>
1313
<Authors>Alexander Moerman</Authors>

DcmFind/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class Options
1818

1919
public string? Directory { get; set; }
2020

21-
[Option('f', "filePattern", Default = "*.dcm", HelpText = "Only query files that satisfy this file pattern")]
21+
[Option('f', "filePattern", Default = "*.*", HelpText = "Only query files that satisfy this file pattern")]
2222
public string? FilePattern { get; set; }
2323

2424
[Option('r', "recursive", Default = true, HelpText = "Search recursively in nested directories")]

0 commit comments

Comments
 (0)