@@ -5,57 +5,60 @@ CommandLineUtils
55The primary goal of the library is to assist with parsing command line arguments and executing the correct
66commands related to those arguments. The library also provides various other utilities such as input helpers.
77
8- <div class =" row " >
9- <div class="col-md-4 ">
10- <div class="panel panel-default" style="min-height: 140px ">
11- <div class="panel -body">
12- <p><strong>< a href="docs/intro.md">Documentation</a></strong></p >
13- <p>Tutorials to create your first .NET command line application, and docs on how to use the library.</p>
8+ <div class =" row row-cols-1 row-cols-md-2 row-cols-lg-3 g-4 " >
9+ <div class="col">
10+ <div class="card h-100 ">
11+ <div class="card -body">
12+ <h5 class="card-title">< a href="docs/intro.md">Documentation</a></h5 >
13+ <p class="card-text" >Tutorials to create your first .NET command line application, and docs on how to use the library.</p>
1414 </div>
1515 </div>
1616 </div>
17- <div class="col-md-4 ">
18- <div class="panel panel-default" style="min-height: 140px ">
19- <div class="panel -body">
20- <p><strong> [ API Reference](xref:latest_api_ref) </strong ></p >
21- <p>Read the API documentation for this library.</p>
17+ <div class="col">
18+ <div class="card h-100 ">
19+ <div class="card -body">
20+ <h5 class="card-title"><a href="api/index.md"> API Reference</a ></h5 >
21+ <p class="card-text" >Read the API documentation for this library.</p>
2222 </div>
2323 </div>
2424 </div>
25- <div class="col-md-4 ">
26- <div class="panel panel-default" style="min-height: 140px ">
27- <div class="panel -body">
28- <p><strong>< a href="https://github.com/natemcmaster/CommandLineUtils/tree/main/docs/samples/">Samples</a></strong></p >
29- <p>View sample projects which use CommandLineUtils.</p>
25+ <div class="col">
26+ <div class="card h-100 ">
27+ <div class="card -body">
28+ <h5 class="card-title">< a href="https://github.com/natemcmaster/CommandLineUtils/tree/main/docs/samples/">Samples</a></h5 >
29+ <p class="card-text" >View sample projects which use CommandLineUtils.</p>
3030 </div>
3131 </div>
3232 </div>
33- <div class="col-md-4 ">
34- <div class="panel panel-default" style="min-height: 140px ">
35- <div class="panel -body">
36- <p><strong>< a href="https://github.com/natemcmaster/CommandLineUtils">Source Code and Issue Tracker </a></strong></p >
37- <p>The project is open-source on GitHub.</p>
33+ <div class="col">
34+ <div class="card h-100 ">
35+ <div class="card -body">
36+ <h5 class="card-title">< a href="https://github.com/natemcmaster/CommandLineUtils">Source Code</a></h5 >
37+ <p class="card-text" >The project is open-source on GitHub.</p>
3838 </div>
3939 </div>
4040 </div>
41- <div class="col-md-4 ">
42- <div class="panel panel-default" style="min-height: 140px ">
43- <div class="panel -body">
44- <p><strong>< a href="https://nuget.org/packages/McMaster.Extensions.CommandLineUtils">NuGet</a></strong></p >
45- <p>See the latest releases of this library as a NuGet package.</p>
41+ <div class="col">
42+ <div class="card h-100 ">
43+ <div class="card -body">
44+ <h5 class="card-title">< a href="https://nuget.org/packages/McMaster.Extensions.CommandLineUtils">NuGet</a></h5 >
45+ <p class="card-text" >See the latest releases of this library as a NuGet package.</p>
4646 </div>
4747 </div>
4848 </div>
49- <div class="col-md-4 ">
50- <div class="panel panel-default" style="min-height: 140px ">
51- <div class="panel -body">
52- <p><strong>< a href="https://github.com/natemcmaster/CommandLineUtils/tree /main/CHANGELOG.md">Version history </a></strong></p >
53- <p>Read notes about fixes and enhancements per release.</p>
49+ <div class="col">
50+ <div class="card h-100 ">
51+ <div class="card -body">
52+ <h5 class="card-title">< a href="https://github.com/natemcmaster/CommandLineUtils/blob /main/CHANGELOG.md">Changelog </a></h5 >
53+ <p class="card-text" >Read notes about fixes and enhancements per release.</p>
5454 </div>
5555 </div>
5656 </div>
5757</div >
5858
59+ ---
60+
61+ ## Quick Example
5962
6063Using this library, you can write a command line application without doing the heavy lifting to support automated help text generation,
6164masking input for passwords, parsing argument syntax, validation, etc.
0 commit comments