<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to Home</title><link>https://sourceforge.net/p/commandlinegui/wiki/Home/</link><description>Recent changes to Home</description><atom:link href="https://sourceforge.net/p/commandlinegui/wiki/Home/feed" rel="self"/><language>en</language><lastBuildDate>Fri, 02 Oct 2015 21:43:12 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/commandlinegui/wiki/Home/feed" rel="self" type="application/rss+xml"/><item><title>Home modified by Zijian</title><link>https://sourceforge.net/p/commandlinegui/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v8
+++ v9
@@ -1,6 +1,6 @@
 Command Line GUI provides 3 major features

-1. Provides a command line arguments parser library Fonlow.CommandLineGui.Core.dll for constructing [.NET command line programs (console applications)](https://sourceforge.net/p/commandlinegui/code/HEAD/tree/trunk/MyPlossum/Program.cs) with [complex arguments](https://sourceforge.net/p/commandlinegui/code/HEAD/tree/trunk/RobocopyParameters/Options.cs). 
+1. Provides a [command line arguments parser library Fonlow.CommandLineGui.Core.dll](https://www.nuget.org/packages/Fonlow.CommandLineParser) for constructing [.NET command line programs (console applications)](https://sourceforge.net/p/commandlinegui/code/HEAD/tree/trunk/MyPlossum/Program.cs) with [complex arguments](https://sourceforge.net/p/commandlinegui/code/HEAD/tree/trunk/RobocopyParameters/Options.cs). 
 1. [Generate GUI] for the command line program constructured with the Core library, since the command line program could become a plugin of Command Line GUI.
 1. You may [wrap existing an existing native command line program like Robocopy.exe](https://sourceforge.net/p/commandlinegui/code/HEAD/tree/trunk/RobocopyParameters/) with the wapper dll through the Core library, and [the wrapper will become a plugin](https://a.fsdn.com/con/app/proj/commandlinegui/screenshots/Main.png/182/137).

@@ -10,7 +10,7 @@

 Please check [Get the Best of Both Worlds](http://www.codeproject.com/Articles/649950/Get-the-Best-of-Both-Worlds-Command-Line-and-GUI)  for more details of integrating the library into your applications.

-
+[NuGet package of the core library](https://www.nuget.org/packages/Fonlow.CommandLineParser) is available.

 [[project_screenshots]]

&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Zijian</dc:creator><pubDate>Fri, 02 Oct 2015 21:43:12 -0000</pubDate><guid>https://sourceforge.net562f108e2183484ac9aa51c5e283d2d7fc087d1b</guid></item><item><title>Home modified by Zijian</title><link>https://sourceforge.net/p/commandlinegui/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v7
+++ v8
@@ -15,9 +15,12 @@
 [[project_screenshots]]

 Alternatives for constructing CLI programs in .NET:
+
 *  [Command Line Parser](http://commandlineparser.codeplex.com/)
 *  [Command Line Parser Library](https://github.com/gsscoder/commandline)
 *  [Plossum library](https://sourceforge.net/projects/plossum/) 
+*  [Fluent Command Line Parser](https://github.com/fclp/fluent-command-line-parser)
+

 [Media Wiki](http://commandlinegui.sourceforge.net/wiki/index.php/Main_Page).
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Zijian</dc:creator><pubDate>Fri, 02 Oct 2015 21:10:42 -0000</pubDate><guid>https://sourceforge.nete9357b148e7325a0d12904a48973f0e4ac8ff590</guid></item><item><title>Home modified by Zijian</title><link>https://sourceforge.net/p/commandlinegui/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v6
+++ v7
@@ -1,20 +1,23 @@
 Command Line GUI provides 3 major features

-1. Provides a command line arguments parser library Fonlow.CommandLineGui.Core.dll for constructing .NET command line programs (console applications) with complex arguments. The arguments parser is compatible with [Plossum library](https://sourceforge.net/projects/plossum/) with [sigificant improvements].
+1. Provides a command line arguments parser library Fonlow.CommandLineGui.Core.dll for constructing [.NET command line programs (console applications)](https://sourceforge.net/p/commandlinegui/code/HEAD/tree/trunk/MyPlossum/Program.cs) with [complex arguments](https://sourceforge.net/p/commandlinegui/code/HEAD/tree/trunk/RobocopyParameters/Options.cs). 
 1. [Generate GUI] for the command line program constructured with the Core library, since the command line program could become a plugin of Command Line GUI.
-1. You may wrap existing an existing native command line program like Robocopy.exe with the wapper dll through the Core library, and the wrapper will become a plugin.
-
-Please check [Get the Best of Both Worlds](http://www.codeproject.com/Articles/649950/Get-the-Best-of-Both-Worlds-Command-Line-and-GUI)  for more details of integrating the library into your applications.
+1. You may [wrap existing an existing native command line program like Robocopy.exe](https://sourceforge.net/p/commandlinegui/code/HEAD/tree/trunk/RobocopyParameters/) with the wapper dll through the Core library, and [the wrapper will become a plugin](https://a.fsdn.com/con/app/proj/commandlinegui/screenshots/Main.png/182/137).

 By default, this project includes a primary plug-in for Robocopy. If you have used Robocopy and Microsoft's Robocopy GUI, you might be interested in using this alternative. Hopefully there will be more plug-in assemblies developed by other good developers for more command line programs. 

-If you have ever used [Plossum Command Line Library](http://www.codeproject.com/Articles/19869/Powerful-and-simple-command-line-parsing-in-C) for constructing command line programs (console app), your programs are ready for having a GUI after changing references and recompiling.
+If you have ever used [Plossum Command Line Library](http://www.codeproject.com/Articles/19869/Powerful-and-simple-command-line-parsing-in-C) for constructing command line programs (console app), your programs are ready for having a GUI after changing references and recompiling. The arguments parser is compatible with [Plossum library](https://sourceforge.net/projects/plossum/) but with [sigificant improvements](http://commandlinegui.sourceforge.net/wiki/index.php/Command_Line_GUI_and_Plossum).
+
+Please check [Get the Best of Both Worlds](http://www.codeproject.com/Articles/649950/Get-the-Best-of-Both-Worlds-Command-Line-and-GUI)  for more details of integrating the library into your applications.

 [[project_screenshots]]
-[[members limit=20]]
-[[download_button]]
+
+Alternatives for constructing CLI programs in .NET:
+*  [Command Line Parser](http://commandlineparser.codeplex.com/)
+*  [Command Line Parser Library](https://github.com/gsscoder/commandline)
+*  [Plossum library](https://sourceforge.net/projects/plossum/) 

 [Media Wiki](http://commandlinegui.sourceforge.net/wiki/index.php/Main_Page).
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Zijian</dc:creator><pubDate>Fri, 02 Oct 2015 20:53:41 -0000</pubDate><guid>https://sourceforge.net7d09fe35523cc63cdcc273d99de671000977690d</guid></item><item><title>Home modified by Zijian</title><link>https://sourceforge.net/p/commandlinegui/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v5
+++ v6
@@ -1,7 +1,7 @@
 Command Line GUI provides 3 major features

-1. Provides a command line arguments parser library Fonlow.CommandLineGui.Core.dll for constructing .NET command line programs (console applications) with complex arguments. The arguments parser is compatible with [https://sourceforge.net/projects/plossum/ Plossum library] with [[sigificant improvements]].
-1. [[Generate GUI]] for the command line program constructured with the Core library, since the command line program could become a plugin of Command Line GUI.
+1. Provides a command line arguments parser library Fonlow.CommandLineGui.Core.dll for constructing .NET command line programs (console applications) with complex arguments. The arguments parser is compatible with [Plossum library](https://sourceforge.net/projects/plossum/) with [sigificant improvements].
+1. [Generate GUI] for the command line program constructured with the Core library, since the command line program could become a plugin of Command Line GUI.
 1. You may wrap existing an existing native command line program like Robocopy.exe with the wapper dll through the Core library, and the wrapper will become a plugin.

 Please check [Get the Best of Both Worlds](http://www.codeproject.com/Articles/649950/Get-the-Best-of-Both-Worlds-Command-Line-and-GUI)  for more details of integrating the library into your applications.
@@ -16,4 +16,5 @@
 [[members limit=20]]
 [[download_button]]

+
 [Media Wiki](http://commandlinegui.sourceforge.net/wiki/index.php/Main_Page).
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Zijian</dc:creator><pubDate>Fri, 02 Oct 2015 19:52:24 -0000</pubDate><guid>https://sourceforge.netfdb982c4f012989d260ee347b2087251318d1971</guid></item><item><title>Home modified by Zijian</title><link>https://sourceforge.net/p/commandlinegui/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v4
+++ v5
@@ -1,5 +1,19 @@
-Please go to Hosted Apps -&amp;gt; [Media Wiki](http://commandlinegui.sourceforge.net/wiki/index.php/Main_Page).
+Command Line GUI provides 3 major features
+
+1. Provides a command line arguments parser library Fonlow.CommandLineGui.Core.dll for constructing .NET command line programs (console applications) with complex arguments. The arguments parser is compatible with [https://sourceforge.net/projects/plossum/ Plossum library] with [[sigificant improvements]].
+1. [[Generate GUI]] for the command line program constructured with the Core library, since the command line program could become a plugin of Command Line GUI.
+1. You may wrap existing an existing native command line program like Robocopy.exe with the wapper dll through the Core library, and the wrapper will become a plugin.
+
+Please check [Get the Best of Both Worlds](http://www.codeproject.com/Articles/649950/Get-the-Best-of-Both-Worlds-Command-Line-and-GUI)  for more details of integrating the library into your applications.
+
+By default, this project includes a primary plug-in for Robocopy. If you have used Robocopy and Microsoft's Robocopy GUI, you might be interested in using this alternative. Hopefully there will be more plug-in assemblies developed by other good developers for more command line programs. 
+
+If you have ever used [Plossum Command Line Library](http://www.codeproject.com/Articles/19869/Powerful-and-simple-command-line-parsing-in-C) for constructing command line programs (console app), your programs are ready for having a GUI after changing references and recompiling.
+
+

 [[project_screenshots]]
 [[members limit=20]]
 [[download_button]]
+
+[Media Wiki](http://commandlinegui.sourceforge.net/wiki/index.php/Main_Page).
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Zijian</dc:creator><pubDate>Fri, 02 Oct 2015 19:48:05 -0000</pubDate><guid>https://sourceforge.netad8bc43f94542284fb1a58b42ecf0512bfd397d4</guid></item><item><title>Home modified by Zijian</title><link>https://sourceforge.net/p/commandlinegui/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -1,4 +1,4 @@
-Please go to Hosted Apps -&amp;gt; [Media Wiki](http://sourceforge.net/apps/mediawiki/commandlinegui/).
+Please go to Hosted Apps -&amp;gt; [Media Wiki](http://commandlinegui.sourceforge.net/wiki/index.php/Main_Page).

 [[project_screenshots]]
 [[members limit=20]]
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Zijian</dc:creator><pubDate>Thu, 14 May 2015 02:34:20 -0000</pubDate><guid>https://sourceforge.net5c3598e8b5116615cc025b21bb96168caef229d3</guid></item><item><title>Home modified by Zijian</title><link>https://sourceforge.net/p/commandlinegui/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -1,4 +1,4 @@
-Please go to Hosted Apps -&gt; Media Wiki.
+Please go to Hosted Apps -&gt; [Media Wiki](http://sourceforge.net/apps/mediawiki/commandlinegui/).

 [[project_screenshots]]
 [[members limit=20]]
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Zijian</dc:creator><pubDate>Tue, 13 May 2014 22:51:24 -0000</pubDate><guid>https://sourceforge.netf11e092cd4bb94acfaa9b4038d42a2cf53ddb04c</guid></item><item><title>Home modified by Zijian</title><link>https://sourceforge.net/p/commandlinegui/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1,8 +1,5 @@
-Welcome to your wiki!
+Please go to Hosted Apps -&gt; Media Wiki.

-This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: [SamplePage].
-
-The wiki uses [Markdown](/p/commandlinegui/wiki/markdown_syntax/) syntax.
-
+[[project_screenshots]]
 [[members limit=20]]
 [[download_button]]
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Zijian</dc:creator><pubDate>Tue, 13 May 2014 22:49:58 -0000</pubDate><guid>https://sourceforge.net6e7f46a5dd91ef806b94ee3a6b2e27ef6075c080</guid></item><item><title>Home modified by Zijian</title><link>https://sourceforge.net/p/commandlinegui/wiki/Home/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Welcome to your wiki!&lt;/p&gt;
&lt;p&gt;This is the default page, edit it as you see fit. To add a new page simply reference it within brackets, e.g.: &lt;span&gt;[SamplePage]&lt;/span&gt;.&lt;/p&gt;
&lt;p&gt;The wiki uses &lt;a class="" href="/p/commandlinegui/wiki/markdown_syntax/"&gt;Markdown&lt;/a&gt; syntax.&lt;/p&gt;
&lt;p&gt;&lt;h6&gt;Project Members:&lt;/h6&gt;&lt;ul class="md-users-list"&gt;&lt;li&gt;&lt;a href="/u/zijianhuang/"&gt;Zijian&lt;/a&gt; (admin)&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;
&lt;/p&gt;&lt;p&gt;&lt;span class="download-button-5175e6f034309d2e91749e0b" style="margin-bottom: 1em; display: block;"&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Zijian</dc:creator><pubDate>Tue, 23 Apr 2013 01:42:08 -0000</pubDate><guid>https://sourceforge.netdd5f0d0bd7ac5bcc235be5bca4c120cb91ea60c7</guid></item></channel></rss>