You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+28-4Lines changed: 28 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
-
# RSCG - 247 Examples of Roslyn Source Code Generators / 16 created by Microsoft /
1
+
# RSCG - 248 Examples of Roslyn Source Code Generators / 16 created by Microsoft /
2
2
3
-
The RSCG_Examples repository is a comprehensive documentation system that automatically processes and showcases 247 Roslyn Source Code Generator (RSCG) examples. The system transforms individual RSCG projects into structured documentation with code examples and cross-referenced content with a searchable website and code example exports.
3
+
The RSCG_Examples repository is a comprehensive documentation system that automatically processes and showcases 248 Roslyn Source Code Generator (RSCG) examples. The system transforms individual RSCG projects into structured documentation with code examples and cross-referenced content with a searchable website and code example exports.
4
4
5
5
This system serves as both a learning resource for .NET developers interested in source generators and an automated pipeline for maintaining up-to-date documentation about the RSCG ecosystem
6
6
7
-
## Latest Update : 2025-12-14 => 14 December 2025
7
+
## Latest Update : 2025-12-15 => 15 December 2025
8
8
9
9
If you want to see examples with code, please click ***[List V2](https://ignatandrei.github.io/RSCG_Examples/v2/docs/List-of-RSCG)***
10
10
@@ -24,8 +24,32 @@ If you want to be notified each time I add a new RSCG example , please click htt
24
24
25
25
## Content
26
26
27
-
Those are the 247 Roslyn Source Code Generators that I have tested you can see and download source code example.
27
+
Those are the 248 Roslyn Source Code Generators that I have tested you can see and download source code example.
28
28
( including 16 from Microsoft )
29
+
### 248. [docopt.net](https://ignatandrei.github.io/RSCG_Examples/v2/docs/docopt.net) , in the [CommandLine](https://ignatandrei.github.io/RSCG_Examples/v2/docs/rscg-examples#commandline) category
30
+
31
+
Generated on : 2025-12-15 => 15 December 2025
32
+
33
+
<details>
34
+
<summary>Expand</summary>
35
+
36
+
37
+
38
+
Author: Atif Aziz
39
+
40
+
docopt.net is the .net version of the docopt python beautiful command line parser. docopt.net helps you define an interface for your command-line app, and automatically generate a parser for it. docopt.net is based on conventions that have been used for decades in help messages and man pages for program interface description. Interface description in docopt.net is such a help message, but formalized. Check out http://docopt.org for a more detailed explanation.
41
+
Quick example: var arguments = new DocOpt().Apply("Usage: prog [-a][-b] FILE", args); if (arguments["-a"].IsTrue) { ... }
### 247. [BlazorOcticons](https://ignatandrei.github.io/RSCG_Examples/v2/docs/BlazorOcticons) , in the [Blazor](https://ignatandrei.github.io/RSCG_Examples/v2/docs/rscg-examples#blazor) category
docopt.net is the .net version of the docopt python beautiful command line parser. docopt.net helps you define an interface for your command-line app, and automatically generate a parser for it. docopt.net is based on conventions that have been used for decades in help messages and man pages for program interface description. Interface description in docopt.net is such a help message, but formalized. Check out http://docopt.org for a more detailed explanation.
2
+
Quick example: var arguments = new DocOpt().Apply("Usage: prog [-a] [-b] FILE", args); if (arguments["-a"].IsTrue) { ... }
0 commit comments