You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucenenet.apache.org by sy...@apache.org on 2014/09/06 21:36:49 UTC

[38/51] [abbrv] [partial] Cleaning up and getting ready to development towards v4.8

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/1da1cb5b/lib/Gallio.3.2.750/tools/Gallio.PowerShellCommands.xml
----------------------------------------------------------------------
diff --git a/lib/Gallio.3.2.750/tools/Gallio.PowerShellCommands.xml b/lib/Gallio.3.2.750/tools/Gallio.PowerShellCommands.xml
deleted file mode 100644
index 6a898a9..0000000
--- a/lib/Gallio.3.2.750/tools/Gallio.PowerShellCommands.xml
+++ /dev/null
@@ -1,660 +0,0 @@
-<?xml version="1.0"?>
-<doc>
-    <assembly>
-        <name>Gallio.PowerShellCommands</name>
-    </assembly>
-    <members>
-        <member name="T:Gallio.PowerShellCommands.BaseCommand">
-            <exclude />
-            <summary>
-            Abstract base class for PowerShell commands.
-            Provides some useful runtime support.
-            </summary>
-        </member>
-        <member name="M:Gallio.PowerShellCommands.BaseCommand.PostMessage(Gallio.Common.Action)">
-            <summary>
-            Posts an action to perform later within the message loop.
-            </summary>
-            <param name="action">The action to perform.</param>
-            <seealso cref="M:Gallio.PowerShellCommands.BaseCommand.RunWithMessagePump(Gallio.Common.Action)"/>
-        </member>
-        <member name="M:Gallio.PowerShellCommands.BaseCommand.RunWithMessagePump(Gallio.Common.Action)">
-            <summary>
-            Starts a message pump running on the current thread and performs the
-            specified action in another thread.  The action can asynchronously communicate back to the
-            cmdlet using <see cref="M:Gallio.PowerShellCommands.BaseCommand.PostMessage(Gallio.Common.Action)"/> on the current thread.
-            </summary>
-            <param name="action">The action to perform.</param>
-        </member>
-        <member name="M:Gallio.PowerShellCommands.BaseCommand.StopProcessing">
-            <summary>
-            Aborts the processing of the command.
-            </summary>
-        </member>
-        <member name="E:Gallio.PowerShellCommands.BaseCommand.StopRequested">
-            <summary>
-            The event dispatches when the command is asynchronously being stopped
-            via <see cref="M:Gallio.PowerShellCommands.BaseCommand.StopProcessing"/>.
-            </summary>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.BaseCommand.Logger">
-            <summary>
-            Gets the logger for the cmdlet.
-            </summary>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.BaseCommand.NoProgress">
-            <summary>
-            Sets whether progress information is shown during the execution. If this option is specified,
-            the execution is silent and no progress information is displayed.
-            </summary>
-            <remarks>
-            <list type="bullet">
-            <item>This parameter takes the value true if present and false if not. No
-            value has to be specified.</item>
-            </list>
-            </remarks>
-            <example>
-            <code>
-            # Shows progress information
-            Run-Gallio SomeAssembly.dll
-            # Hides progress information
-            Run-Gallio SomeAssembly.dll -np
-            </code>
-            </example>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.BaseCommand.ProgressMonitorProvider">
-            <summary>
-            Gets the progress monitor provider for the cmdlet.
-            </summary>
-        </member>
-        <member name="T:Gallio.PowerShellCommands.CommandProgressMonitorPresenter">
-            <exclude />
-        </member>
-        <member name="T:Gallio.PowerShellCommands.CommandProgressMonitorProvider">
-            <exclude />
-        </member>
-        <member name="T:Gallio.PowerShellCommands.NamespaceDoc">
-            <summary>
-            The Gallio.PowerShellCommands namespace contains Powershell cmdlets for Gallio.
-            </summary>
-        </member>
-        <member name="T:Gallio.PowerShellCommands.RunGallioCommand">
-            <summary>
-            A PowerShell Cmdlet for running Gallio.
-            </summary>
-            <remarks>
-            Only the <see cref="P:Gallio.PowerShellCommands.RunGallioCommand.Files"/> parameter is required.
-            </remarks>
-            <example>
-            <para>There are severals ways to run this cmdlet:</para>
-            <code><![CDATA[
-            # Makes the Gallio commands available
-            Add-PSSnapIn Gallio
-            
-            # Runs a few assemblies and scripts.
-            Run-Gallio "[Path-to-assembly1]\TestAssembly1.dll","[Path-to-assembly2]\TestAssembly2.dll","[Path-to-test-script1]/TestScript1_spec.rb","[Path-to-test-script2]/TestScript2.xml" -f Category:UnitTests -rd C:\build\reports -rf html -ra zip
-            ]]></code>
-            </example>
-        </member>
-        <member name="M:Gallio.PowerShellCommands.RunGallioCommand.#ctor">
-            <summary>
-            Default constructor.
-            </summary>
-        </member>
-        <member name="M:Gallio.PowerShellCommands.RunGallioCommand.EndProcessing">
-            <exclude />
-        </member>
-        <member name="M:Gallio.PowerShellCommands.RunGallioCommand.RunLauncher(Gallio.Runner.TestLauncher)">
-            <exclude />
-            <summary>
-            Provided so that the unit tests can override test execution behavior.
-            </summary>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.RunGallioCommand.Files">
-             <summary>
-             The list of relative or absolute paths of test files, projects and assemblies to execute.
-             Wildcards may be used.  This is required.
-             </summary>
-             <example>
-             <para>There are severals ways to pass the test files to the cmdlet:</para>
-             <code><![CDATA[
-             # Runs TestAssembly1.dll
-             Run-Gallio "[Path-to-assembly1]\TestAssembly1.dll"
-             
-             # Runs TestAssembly1.dll and TestAssembly2.dll
-             Run-Gallio "[Path-to-assembly1]\TestAssembly1.dll","[Path-to-assembly2]\TestAssembly2.dll"
-             
-             # Runs TestAssembly1.dll and TestAssembly2.dll
-             $assemblies = "[Path-to-assembly1]\TestAssembly1.dll","[Path-to-assembly2]\TestAssembly2.dll"
-             Run-Gallio $assemblies
-             
-             # Runs TestAssembly1.dll, TestAssembly2.dll, TestScript1_spec.rb, and TestScript2.xml
-             $assembly1 = "[Path-to-assembly1]\TestAssembly1.dll"
-             $assembly2 = "[Path-to-assembly2]\TestAssembly2.dll"
-             $script1 = "[Path-to-test-script1]\TestScript1_spec.rb"
-             $script2 = "[Path-to-test-script2]/TestScript2.xml"
-             $files = $assembly1,$assembly2,$script1,$script2
-             Run-Gallio $files
-             
-             # If you don't specify the test files, PowerShell will prompt you for the names:
-             PS C:\Documents and Settings\jhi> Run-Gallio
-            
-             cmdlet Run-Gallio at command pipeline position
-             Supply values for the following parameters:
-             Files[0]:
-             ]]></code>
-             </example>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.RunGallioCommand.HintDirectories">
-            <summary>
-            The list of directories used for loading referenced assemblies and other dependent resources.
-            </summary>
-            <example>
-            <para>The following example shows how to specify the hint directories:</para>
-            <code><![CDATA[
-            Run-Gallio SomeAssembly.dll -hd C:\SomeFolder
-            ]]></code>
-            <para>See the <see cref="P:Gallio.PowerShellCommands.RunGallioCommand.Files"/> property for more ways of passing list of parameters to the cmdlet.</para>
-            </example>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.RunGallioCommand.PluginDirectories">
-            <summary>
-            Additional Gallio plugin directories to search recursively.
-            </summary>
-            <example>
-            <para>The following example shows how to specify the plugin directories:</para>
-            <code><![CDATA[
-            Run-Gallio SomeAssembly.dll -pd C:\SomeFolder
-            ]]></code>
-            <para>See the <see cref="P:Gallio.PowerShellCommands.RunGallioCommand.Files"/> property for more ways of passing list of parameters to
-            the cmdlet.</para>
-            </example>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.RunGallioCommand.ApplicationBaseDirectory">
-            <summary>
-            Gets or sets the relative or absolute path of the application base directory,
-            or null to use a default value selected by the consumer.
-            </summary>
-            <remarks>
-            <para>
-            If relative, the path is based on the current working directory,
-            so a value of "" causes the current working directory to be used.
-            </para>
-            <para>
-            The default is null.
-            </para>
-            </remarks>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.RunGallioCommand.WorkingDirectory">
-            <summary>
-            Gets or sets the relative or absolute path of the working directory
-            or null to use a default value selected by the consumer.
-            </summary>
-            <remarks>
-            <para>
-            If relative, the path is based on the current working directory,
-            so a value of "" causes the current working directory to be used.
-            </para>
-            <para>
-            The default is null.
-            </para>
-            </remarks>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.RunGallioCommand.ShadowCopy">
-            <summary>
-            Enables shadow copying when set to true.
-            </summary>
-            <remarks>
-            <para>
-            Shadow copying allows the original assemblies to be modified while the tests are running.
-            However, shadow copying may occasionally cause some tests to fail if they depend on their original location.
-            </para>
-            <para>
-            The default is false.
-            </para>
-            </remarks>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.RunGallioCommand.DebugTests">
-            <summary>
-            Attaches the debugger to the test process when set to true.
-            </summary>
-            <remarks>
-            <para>
-            The default is false.
-            </para>
-            </remarks>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.RunGallioCommand.RuntimeVersion">
-            <summary>
-            Gets or sets the version of the .Net runtime to use for running tests.
-            </summary>
-            <remarks>
-            <para>
-            For the CLR, this must be the name of one of the framework directories in <c>%SystemRoot%\Microsoft.Net\Framework.</c>  eg. 'v2.0.50727'.
-            </para>
-            <para>
-            The default is null which uses the most recent installed and supported framework.
-            </para>
-            </remarks>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.RunGallioCommand.ReportTypes">
-            <summary>
-            A list of the types of reports to generate, separated by semicolons. 
-            </summary>
-            <remarks>
-            <list type="bullet">
-            <item>The types supported "out of the box" are: Html, Html-Inline, Text, XHtml,
-            XHtml-Inline, Xml, and Xml-Inline, but more types could be available as plugins.</item>
-            <item>The report types are not case sensitives.</item>
-            </list>
-            </remarks>
-            <example>
-            <para>In the following example reports will be generated in both HTML and XML format:</para>
-            <code><![CDATA[
-            Run-Gallio SomeAssembly.dll -rt "html","text"
-            ]]></code>
-            <para>See the <see cref="P:Gallio.PowerShellCommands.RunGallioCommand.Files"/> property for more ways of passing list of parameters to
-            the cmdlet.</para>
-            </example>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.RunGallioCommand.ReportNameFormat">
-            <summary>
-            Sets the format string to use to generate the reports filenames.
-            </summary>
-            <remarks>
-            <para>
-            Any occurence of {0} will be replaced by the date, and any occurrence of {1} by the time.
-            </para>
-            <para>
-            The default format string is <c>test-report-{0}-{1}</c>.
-            </para>
-            </remarks>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.RunGallioCommand.ReportDirectory">
-            <summary>
-            Sets the name of the directory where the reports will be put.
-            </summary>
-            <remarks>
-            <para>
-            The directory will be created if it doesn't exist. Existing files will be overwritten.
-            The default report directory is "Reports".
-            </para>
-            </remarks>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.RunGallioCommand.ReportArchive">
-            <summary>
-            Specifies to enclose the resulting reports into a compressed archive file (zip).
-            </summary>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.RunGallioCommand.Filter">
-            <summary>
-            <para>
-      Sets the filter set to apply, which consists of a sequence of one or more inclusion
-      or exclusion filter rules prefixed using 'include' (optional) or 'exclude'.
-    </para>
-            </summary>
-            <remarks>
-            <para>
-      A filter rule consists of zero or more filter expressions
-      that may be combined using 'and', 'or', and 'not' and grouped with
-      parentheses.  A filter expression consists of a filter key followed by one or
-      more comma-delimited matching values in the form 'key: value, "quoted value",
-      /regular expression/'.
-    </para><para>
-      The filter grammar is defined as follows:
-    </para><para>
-      <code><![CDATA[
-     INCLUDE          ::= "include"              # Not case-sensitive
-     EXCLUDE          ::= "exclude"              # Not case-sensitive
-	
-     OR               ::= "or"                   # Not case-sensitive
-     AND              ::= "and"                  # Not case-sensitive
-     NOT              ::= "not"                  # Not case-sensitive
-
-     <unquotedWord>   ::= [^:,*()/\"']+
-    
-     <quotedWord>     ::= '"' .* '"'             # String delimited by double quotation marks
-                      | "'" .* "'"               # String delimited by single quotation marks
-               
-     <word>           ::= <unquotedWord>
-                      | <quotedWord>
-                      
-     <regexWord>      ::= "/" .* "/"             # Regular expression
-                      | "/" .* "/i"              # Case-insensitive regular expression
-                      
-     <key>            ::= <word>
-    
-     <value>          ::= <word>                 # Value specified by exact string
-                      | <regexWord>              # Value specified by regular expression
-    
-     <matchSequence>  ::= <value> (',' <value>)* # One or more comma-separated values
-    
-     <filterExpr>     ::= "*"                    # "Any"
-                      | <key> ":" matchSeq>
-                      | <filterExpr> OR filterExpr>   # Combine filter expressions with OR
-                      | <filterExpr> AND filterExpr>  # Combine filter expressions with AND
-                      | NOT <filterExpr>         # Negate filter expression
-                      | "(" <filterExpr> ")"     # Grouping filter expression
-		      
-     <filterRule>     ::= <filterExpr>           # Inclusion rule (default case)
-                      | INCLUDE <filterExpr>     # Inclusion rule
-                      | EXCLUDE <filterExpr>     # Exclusion rule
-
-     <filterSet>      ::= <filterRule>           # Filter set consists of at least one filter rule.
-                      | <filterRule> <filterSet> # But may be a sequence of rules.
-     ]]></code>
-    </para><list type="bullet">
-      <item>By default this property takes the value "*", which means the "Any" filter will be applied.</item>
-      <item>
-        The operator precedence is, from highest to lowest: NOT, AND, and OR. All these operators are
-        left-associative.
-      </item>
-      <item>
-        The commas used to separate the values are interpreted as OR operators, so "Type:Fixture1,Fixture2"
-        is equivalent to "Type:Fixture1 or Type:Fixture2".
-      </item>
-      <item>
-        White-space is ignored outside quoted strings, so "Type:Fixture1|Type:Fixture2" is equivalent
-        to "Type : Fixture1 | Type : Fixture2".
-      </item>
-      <item>
-        Commas, colons, slashes, backslashes and quotation marks can be escaped with a backslash. For
-        example, \' will be interpreted as '. Using a single backslash in front of any other character
-        is invalid.
-      </item>
-      <item>
-        Currently the following filter keys are recognized:
-        <list type="bullet">
-          <item>Id: Filter by id.</item>
-          <item>Name: Filter by name.</item>
-          <item>Assembly: Filter by assembly name.</item>
-          <item>Namespace: Filter by namespace name.</item>
-          <item>Type: Filter by type name, including inherited types.</item>
-          <item>ExactType: Filter by type name, excluding inherited types.</item>
-          <item>Member: Filter by member name.</item>
-          <item>
-            *: All other names are assumed to correspond to metadata keys. See <see cref="T:Gallio.Model.MetadataKeys"/> for standard metadata keys.  Common keys are: AuthorName, Category, Description, Importance, TestsOn.  <seealso cref="T:Gallio.Model.MetadataKeys"/>
-          </item>
-        </list>
-      </item>      
-    </list>
-            </remarks>
-            <example>
-            <para>
-      Assuming the following fixtures have been defined:
-    </para><code><![CDATA[
-      [TestFixture]
-      [Category("UnitTest")]
-      [Author("AlbertEinstein")]
-      public class Fixture1
-      {
-        [Test]
-        public void Test1()
-        {
-        }
-        [Test]
-        public void Test2()
-        {
-        }
-      }
-
-      [TestFixture]
-      [Category("IntegrationTest")]
-      public class Fixture2
-      {
-        [Test]
-        public void Test1()
-        {
-        }
-        [Test]
-        public void Test2()
-        {
-        }
-      }
-    ]]></code><para>The following filters could be applied:</para><list type="bullet">
-      <item>
-        <term>Type: Fixture1</term>
-        <description>All the tests within Fixture1 will be run.</description>
-      </item>
-
-      <item>
-        <term>Member: Test1</term>
-        <description>Only Fixture1.Test1 and Fixture2.Test1 will be run.</description>
-      </item>
-
-      <item>
-        <term>Type: Fixture1, Fixture2</term>
-        <description>All the tests within Fixture1 or Fixture2 will be run.</description>
-      </item>
-
-      <item>
-        <term>Type:Fixture1 or Type:Fixture2</term>
-        <description>All the tests within Fixture1 or Fixture2 will be run.</description>
-      </item>
-
-      <item>
-        <term>Type:Fixture1, Fixture2 and Member:Test2</term>
-        <description>Only Fixture1.Test2 and Fixture2.Test2 will be run.</description>
-      </item>
-
-      <item>
-        <term>Type:/Fixture*/ and Member:Test2</term>
-        <description>Only Fixture1.Test2 and Fixture2.Test2 will be run.</description>
-      </item>
-
-      <item>
-        <term>AuthorName:AlbertEinstein</term>
-        <description>All the tests within Fixture1 will be run because its author attribute is set to "AlbertEinstein".</description>
-      </item>
-
-      <item>
-        <term>Category: IntegrationTest</term>
-        <description>All the tests within Fixture2 will be run because its category attribute is set to "IntegrationTest".</description>
-      </item>
-
-      <item>
-        <term>("Type": 'Fixture1' and "Member":/Test*/) or (Type : Fixture2 and Member: /Test*/)</term>
-        <description>All the tests will be run. This example also shows that you can enclose key and
-        values with quotation marks, and group expressions with parentheses.</description>
-      </item>
-
-      <item>
-        <term>exclude AuthorName: AlbertEinstein</term>
-        <description>All the tests within Fixture2 will be run because its author attribute is not set to "AlbertEinstein".</description>
-      </item>
-      
-      <item>
-        <term>exclude Type: Fixture2 include Member: Test2</term>
-        <description>Only Fixture1.Test2 will be run because Fixture2 was excluded from consideration before the inclusion rule was applied.</description>
-      </item>
-    </list>
-            </example>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.RunGallioCommand.ShowReports">
-            <summary>
-            Sets whether to open the generated reports once execution has finished.
-            </summary>
-            <remarks>
-            <list type="bullet">
-            <item>This parameter takes the value true if present and false if not. No
-            value has to be specified.</item>
-            <item>
-            The reports are opened in a window using the default system application
-            registered to the report file type.
-            </item>
-            </list>
-            </remarks>
-            <example>
-            <code><![CDATA[
-            # Doesn't show the reports once execution has finished
-            Run-Gallio SomeAssembly.dll
-            
-            # Shows the reports once execution has finished
-            Run-Gallio SomeAssembly.dll -sr
-            ]]></code>
-            </example>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.RunGallioCommand.RunnerType">
-            <summary>
-            Sets the type of test runner to use.
-            </summary>
-            <remarks>
-            <list type="bullet">
-            <item>The types supported "out of the box" are: <c>Local</c>, <c>IsolatedAppDomain</c>
-            and <c>IsolatedProcess</c> (default), but more types could be available as plugins.</item>
-            <item>The runner types are not case sensitive.</item>
-            </list>
-            </remarks>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.RunGallioCommand.RunnerExtensions">
-            <summary>
-            Specifies the type, assembly, and parameters of custom test runner
-            extensions to use during the test run.
-            </summary>
-            <remarks>
-            <para>
-            The value must be in the form <c>'[Namespace.]Type,Assembly[;Parameters]'</c> .
-            </para>
-            </remarks>
-            <example>
-            The following example runs tests using a custom logger extension:
-            <code><![CDATA[
-            Run-Gallio SomeAssembly.dll -runner-extension 'FancyLogger,MyExtensions.dll;ColorOutput,FancyIndenting'
-            ]]></code>
-            </example>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.RunGallioCommand.RunnerProperties">
-            <summary>
-            Specifies option property key/value pairs for the test runner.
-            </summary>
-            <example>
-            The following example specifies some extra NCover arguments.
-            <code><![CDATA[
-            Run-Gallio SomeAssembly.dll -runner-property "NCoverArguments='//eas Gallio'"
-            ]]></code>
-            </example>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.RunGallioCommand.ReportFormatterProperties">
-            <summary>
-            Specifies option property key/value pairs for the report formatter.
-            </summary>
-            <example>
-            The following example changes the default attachment content disposition for the reports.
-            <code><![CDATA[
-            Run-Gallio SomeAssembly.dll -report-formatter-property "AttachmentContentDisposition=Absent"
-            ]]></code>
-            </example>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.RunGallioCommand.DoNotRun">
-            <summary>
-            Sets whether to load the tests but not run them.  
-            </summary>
-            <remarks>
-            <para>
-            This option may be used to produce a report that contains test metadata for consumption by other tools.
-            </para>
-            </remarks>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.RunGallioCommand.IgnoreAnnotations">
-            <summary>
-            Sets whether to ignore annotations when determining the result code.
-            </summary>
-            <remarks>
-            <para>
-            If false (default), then error annotations, usually indicative of broken tests, will cause
-            a failure result to be generated.
-            </para>
-            </remarks>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.RunGallioCommand.NoEchoResults">
-            <summary>
-            Sets whether to echo results to the screen as tests finish.  
-            </summary>
-            <remarks>
-            <para>
-            If this option is specified only the final summary statistics are displayed.  Otherwise test results are echoed to the
-            console in varying detail depending on the current verbosity level.
-            </para>
-            </remarks>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.RunGallioCommand.RunTimeLimit">
-            <summary>
-            Sets the maximum amount of time (in seconds) the tests can run 
-            before they are canceled. The default is an infinite time to run. 
-            </summary>
-        </member>
-        <member name="T:Gallio.PowerShellCommands.GallioSnapIn">
-            <exclude />
-            <summary>
-            A PowerShell SnapIn that registers the Gallio Cmdlets.
-            </summary>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.GallioSnapIn.Description">
-            <summary>
-            Gets the description of the snap-in.
-            </summary>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.GallioSnapIn.Name">
-            <summary>
-            Gets the name of the snap-in.
-            </summary>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.GallioSnapIn.Vendor">
-            <summary>
-            Gets the vendor of the snap-in.
-            </summary>
-        </member>
-        <member name="T:Gallio.PowerShellCommands.CommandLogger">
-            <exclude/>
-            <summary>
-            Logs messages using a <see cref="T:Gallio.PowerShellCommands.BaseCommand"/>'s logging functions.
-            </summary>
-        </member>
-        <member name="M:Gallio.PowerShellCommands.CommandLogger.#ctor(Gallio.PowerShellCommands.BaseCommand)">
-            <summary>
-            Initializes a new instance of the <see cref="T:Gallio.PowerShellCommands.CommandLogger"/> class.
-            </summary>
-            <param name="cmdlet">The <see cref="T:System.Management.Automation.Cmdlet"/> instance to channel
-            log messages to.</param>
-        </member>
-        <member name="M:Gallio.PowerShellCommands.CommandLogger.LogImpl(Gallio.Runtime.Logging.LogSeverity,System.String,Gallio.Common.Diagnostics.ExceptionData)">
-            <summary>
-            Logs a message.
-            </summary>
-            <param name="severity">The log message severity.</param>
-            <param name="message">The message to log.</param>
-            <param name="exceptionData">The exception to log (it can be null).</param>
-        </member>
-        <member name="T:Gallio.PowerShellCommands.Properties.Resources">
-            <summary>
-              A strongly-typed resource class, for looking up localized strings, etc.
-            </summary>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.Properties.Resources.ResourceManager">
-            <summary>
-              Returns the cached ResourceManager instance used by this class.
-            </summary>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.Properties.Resources.Culture">
-            <summary>
-              Overrides the current thread's CurrentUICulture property for all
-              resource lookups using this strongly typed resource class.
-            </summary>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.Properties.Resources.CmdletNameAndVersion">
-            <summary>
-              Looks up a localized string similar to Gallio PowerShell Cmdlet - Version {0}.{1} build {2}.
-            </summary>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.Properties.Resources.DefaultReportNameFormat">
-            <summary>
-              Looks up a localized string similar to test-report-{0}-{1}.
-            </summary>
-        </member>
-        <member name="P:Gallio.PowerShellCommands.Properties.Resources.UnexpectedErrorDuringExecution">
-            <summary>
-              Looks up a localized string similar to An unexpected error occurred during execution of the Gallio task..
-            </summary>
-        </member>
-    </members>
-</doc>

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/1da1cb5b/lib/Gallio.3.2.750/tools/Gallio.Reports.dll
----------------------------------------------------------------------
diff --git a/lib/Gallio.3.2.750/tools/Gallio.Reports.dll b/lib/Gallio.3.2.750/tools/Gallio.Reports.dll
deleted file mode 100644
index ebc028b..0000000
Binary files a/lib/Gallio.3.2.750/tools/Gallio.Reports.dll and /dev/null differ

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/1da1cb5b/lib/Gallio.3.2.750/tools/Gallio.Reports.plugin
----------------------------------------------------------------------
diff --git a/lib/Gallio.3.2.750/tools/Gallio.Reports.plugin b/lib/Gallio.3.2.750/tools/Gallio.Reports.plugin
deleted file mode 100644
index 309483e..0000000
--- a/lib/Gallio.3.2.750/tools/Gallio.Reports.plugin
+++ /dev/null
@@ -1,241 +0,0 @@
-<?xml version="1.0" encoding="utf-8" ?>
-<plugin pluginId="Gallio.Reports"
-        recommendedInstallationPath=""
-        xmlns="http://www.gallio.org/">
-  <traits>
-    <name>Gallio Reports Library</name>
-    <version>3.2.0.0</version>
-    <description>Provides several common report formats including Xml, Html, XHtml, MHtml and Text.</description>
-    <icon>plugin://Gallio/Resources/Gallio.ico</icon>
-  </traits>
-
-  <dependencies>
-    <dependency pluginId="Gallio" />
-  </dependencies>
-
-  <files>
-    <file path="Gallio.Reports.plugin" />
-    <file path="Gallio.Reports.dll" />
-    <file path="Gallio.Reports.xml" />
-    <file path="Resources\css\Gallio-Report.css" />
-    <file path="Resources\img\Failed.gif" />
-    <file path="Resources\img\FullStop.gif" />
-    <file path="Resources\img\GallioTestReportHeader.png" />
-    <file path="Resources\img\header-background.gif" />
-    <file path="Resources\img\Ignored.gif" />
-    <file path="Resources\img\Minus.gif" />
-    <file path="Resources\img\Passed.gif" />
-    <file path="Resources\img\Plus.gif" />
-    <file path="Resources\img\UnknownTestKind.png" />
-    <file path="Resources\js\Gallio-Report.js" />
-    <file path="Resources\js\expressInstall.swf" />
-    <file path="Resources\js\player.swf" />
-    <file path="Resources\js\swfobject.js" />
-    <file path="Resources\xsl\Gallio-Report.ccnet-details-condensed.xsl" />
-    <file path="Resources\xsl\Gallio-Report.ccnet-details.xsl" />
-    <file path="Resources\xsl\Gallio-Report.common.xsl" />
-    <file path="Resources\xsl\Gallio-Report.html-condensed.xsl" />
-    <file path="Resources\xsl\Gallio-Report.html.xsl" />
-    <file path="Resources\xsl\Gallio-Report.html+xhtml.xsl" />
-    <file path="Resources\xsl\Gallio-Report.txt.xsl" />
-    <file path="Resources\xsl\Gallio-Report.txt-common.xsl" />
-    <file path="Resources\xsl\Gallio-Report.txt-condensed.xsl" />
-    <file path="Resources\xsl\Gallio-Report.xhtml-condensed.xsl" />
-    <file path="Resources\xsl\Gallio-Report.xhtml.xsl" />
-  </files>
-
-  <assemblies>
-    <assembly fullName="Gallio.Reports, Version=3.2.0.0, Culture=neutral, PublicKeyToken=eb9cfa67ee6ab36e"
-              codeBase="Gallio.Reports.dll"
-              qualifyPartialName="true" />
-  </assemblies>
-
-  <components>
-    <component componentId="ReportFormatter.Xml"
-               serviceId="Gallio.ReportFormatter"
-               componentType="Gallio.Reports.XmlReportFormatter, Gallio.Reports">
-      <parameters>
-        <defaultAttachmentContentDisposition>Link</defaultAttachmentContentDisposition>
-      </parameters>
-      <traits>
-        <name>Xml</name>
-        <description>
-          Generates XML reports with linked attachment files.
-
-          Supported report formatter properties:
-          - AttachmentContentDisposition: Specifies how attachments should be stored.  "Absent", "Link" or "Inline".  Default is "Link".
-        </description>
-      </traits>
-    </component>
-
-    <component componentId="ReportFormatter.Xml-Inline"
-               serviceId="Gallio.ReportFormatter"
-               componentType="Gallio.Reports.XmlReportFormatter, Gallio.Reports">
-      <parameters>
-        <defaultAttachmentContentDisposition>Inline</defaultAttachmentContentDisposition>
-      </parameters>
-      <traits>
-        <name>Xml-Inline</name>
-        <description>Generates XML reports with inline encoded attachments.</description>
-      </traits>
-    </component>
-
-    <component componentId="ReportFormatter.Text"
-               serviceId="Gallio.ReportFormatter"
-               componentType="Gallio.Reports.XsltReportFormatter, Gallio.Reports">
-      <parameters>
-        <extension>txt</extension>
-        <contentType>text/plain</contentType>
-        <defaultAttachmentContentDisposition>Absent</defaultAttachmentContentDisposition>
-        <resourceDirectory>plugin://Gallio.Reports/Resources/</resourceDirectory>
-        <xsltPath>xsl/Gallio-Report.txt.xsl</xsltPath>
-        <resourcePaths></resourcePaths>
-      </parameters>
-      <traits>
-        <name>Text</name>
-        <description>Generates plain text reports.</description>
-      </traits>
-    </component>
-
-    <component componentId="ReportFormatter.Text-Condensed"
-           serviceId="Gallio.ReportFormatter"
-           componentType="Gallio.Reports.XsltReportFormatter, Gallio.Reports">
-      <parameters>
-        <extension>txt</extension>
-        <contentType>text/plain</contentType>
-        <defaultAttachmentContentDisposition>Absent</defaultAttachmentContentDisposition>
-        <resourceDirectory>plugin://Gallio.Reports/Resources/</resourceDirectory>
-        <xsltPath>xsl/Gallio-Report.txt-condensed.xsl</xsltPath>
-        <resourcePaths></resourcePaths>
-      </parameters>
-      <traits>
-        <name>Text-Condensed</name>
-        <description>Generates plain text reports without passing tests.</description>
-      </traits>
-    </component>
-    
-    <component componentId="ReportFormatter.Html"
-               serviceId="Gallio.ReportFormatter"
-               componentType="Gallio.Reports.XsltReportFormatter, Gallio.Reports">
-      <parameters>
-        <extension>html</extension>
-        <contentType>text/html</contentType>
-        <defaultAttachmentContentDisposition>Link</defaultAttachmentContentDisposition>
-        <resourceDirectory>plugin://Gallio.Reports/Resources/</resourceDirectory>
-        <xsltPath>xsl/Gallio-Report.html.xsl</xsltPath>
-        <resourcePaths>css;js;img</resourcePaths>
-      </parameters>
-      <traits>
-        <name>Html</name>
-        <description>
-          Generates HTML reports.
-
-          Supported report formatter properties:
-          - AttachmentContentDisposition: Specifies how attachments should be stored.  "Absent", "Link" or "Inline".  Default is "Link".
-        </description>
-      </traits>
-    </component>
-
-    <component componentId="ReportFormatter.Html-Condensed"
-               serviceId="Gallio.ReportFormatter"
-               componentType="Gallio.Reports.XsltReportFormatter, Gallio.Reports">
-      <parameters>
-        <extension>html</extension>
-        <contentType>text/html</contentType>
-        <defaultAttachmentContentDisposition>Link</defaultAttachmentContentDisposition>
-        <resourceDirectory>plugin://Gallio.Reports/Resources/</resourceDirectory>
-        <xsltPath>xsl/Gallio-Report.html-condensed.xsl</xsltPath>
-        <resourcePaths>css;js;img</resourcePaths>
-      </parameters>
-      <traits>
-        <name>Html-Condensed</name>
-        <description>
-          Generates HTML reports that omit passing tests.
-
-          Supported report formatter properties:
-          - AttachmentContentDisposition: Specifies how attachments should be stored.  "Absent", "Link" or "Inline".  Default is "Link".
-        </description>
-      </traits>
-    </component>
-
-    <component componentId="ReportFormatter.XHtml"
-               serviceId="Gallio.ReportFormatter"
-               componentType="Gallio.Reports.XsltReportFormatter, Gallio.Reports">
-      <parameters>
-        <extension>xhtml</extension>
-        <contentType>text/xhtml+xml</contentType>
-        <defaultAttachmentContentDisposition>Link</defaultAttachmentContentDisposition>
-        <resourceDirectory>plugin://Gallio.Reports/Resources/</resourceDirectory>
-        <xsltPath>xsl/Gallio-Report.xhtml.xsl</xsltPath>
-        <resourcePaths>css;js;img</resourcePaths>
-      </parameters>
-      <traits>
-        <name>XHtml</name>
-        <description>
-          Generates XHTML reports.
-
-          Supported report formatter properties:
-          - AttachmentContentDisposition: Specifies how attachments should be stored.  "Absent", "Link" or "Inline".  Default is "Link".
-        </description>
-      </traits>
-    </component>
-
-    <component componentId="ReportFormatter.XHtml-Condensed"
-               serviceId="Gallio.ReportFormatter"
-               componentType="Gallio.Reports.XsltReportFormatter, Gallio.Reports">
-      <parameters>
-        <extension>xhtml</extension>
-        <contentType>text/xhtml+xml</contentType>
-        <defaultAttachmentContentDisposition>Link</defaultAttachmentContentDisposition>
-        <resourceDirectory>plugin://Gallio.Reports/Resources/</resourceDirectory>
-        <xsltPath>xsl/Gallio-Report.xhtml-condensed.xsl</xsltPath>
-        <resourcePaths>css;js;img</resourcePaths>
-      </parameters>
-      <traits>
-        <name>XHtml-Condensed</name>
-        <description>
-          Generates XHTML reports that omit passing tests.
-
-          Supported report formatter properties:
-          - AttachmentContentDisposition: Specifies how attachments should be stored.  "Absent", "Link" or "Inline".  Default is "Link".
-        </description>
-      </traits>
-    </component>
-
-    <component componentId="ReportFormatter.MHtml"
-               serviceId="Gallio.ReportFormatter"
-               componentType="Gallio.Reports.MHtmlReportFormatter, Gallio.Reports">
-      <parameters>
-        <htmlReportFormatter>${ReportFormatter.Html}</htmlReportFormatter>
-      </parameters>
-      <traits>
-        <name>MHtml</name>
-        <description>Generates MHTML reports.</description>
-      </traits>
-    </component>
-
-    <component componentId="ReportFormatter.MHtml-Condensed"
-               serviceId="Gallio.ReportFormatter"
-               componentType="Gallio.Reports.MHtmlReportFormatter, Gallio.Reports">
-      <parameters>
-        <htmlReportFormatter>${ReportFormatter.Html-Condensed}</htmlReportFormatter>
-      </parameters>
-      <traits>
-        <name>MHtml-Condensed</name>
-        <description>Generates MHTML reports that omit passing tests.</description>
-      </traits>
-    </component>
-
-    <component componentId="Gallio.Reports.Installer"
-               serviceId="Gallio.Installer"
-               componentType="Gallio.Reports.ReportResourcesInstaller, Gallio.Reports">
-      <parameters>
-        <testKindImageDir>plugin://Gallio.Reports/Resources/img/testkinds/</testKindImageDir>
-        <generatedCssFile>plugin://Gallio.Reports/Resources/css/Gallio-Report.Generated.css</generatedCssFile>
-      </parameters>
-      <traits>
-        <requiresElevation>true</requiresElevation>
-      </traits>
-    </component>
-  </components>
-</plugin>

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/1da1cb5b/lib/Gallio.3.2.750/tools/Gallio.Reports.xml
----------------------------------------------------------------------
diff --git a/lib/Gallio.3.2.750/tools/Gallio.Reports.xml b/lib/Gallio.3.2.750/tools/Gallio.Reports.xml
deleted file mode 100644
index 5280155..0000000
--- a/lib/Gallio.3.2.750/tools/Gallio.Reports.xml
+++ /dev/null
@@ -1,229 +0,0 @@
-<?xml version="1.0"?>
-<doc>
-    <assembly>
-        <name>Gallio.Reports</name>
-    </assembly>
-    <members>
-        <member name="T:Gallio.Reports.BaseReportFormatter">
-            <summary>
-            Abstract base class for report formatters.
-            </summary>
-        </member>
-        <member name="F:Gallio.Reports.BaseReportFormatter.AttachmentContentDispositionOption">
-            <summary>
-            Gets the name of the option that how attachments are saved.
-            </summary>
-        </member>
-        <member name="M:Gallio.Reports.BaseReportFormatter.#ctor">
-            <summary>
-            Creates a report formatter.
-            </summary>
-        </member>
-        <member name="M:Gallio.Reports.BaseReportFormatter.GetAttachmentContentDisposition(Gallio.Runner.Reports.ReportFormatterOptions)">
-            <summary>
-            Gets the attachment content disposition.
-            </summary>
-            <param name="options">The formatter options.</param>
-            <returns>The attachment content disposition.</returns>
-        </member>
-        <member name="M:Gallio.Reports.BaseReportFormatter.Format(Gallio.Runner.Reports.IReportWriter,Gallio.Runner.Reports.ReportFormatterOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
-            <inheritdoc />
-        </member>
-        <member name="P:Gallio.Reports.BaseReportFormatter.DefaultAttachmentContentDisposition">
-            <summary>
-            Gets or sets the default attachment content disposition.
-            Defaults to <see cref="F:Gallio.Common.Markup.AttachmentContentDisposition.Absent"/>.
-            </summary>
-        </member>
-        <member name="T:Gallio.Reports.MHtmlReportFormatter">
-            <summary>
-            <para>
-            Formats MIME HTML archive reports similar to the web archives generated by Internet Explorer.
-            The report can then be sent to recipients as a single file.
-            </para>
-            <para>
-            Unfortunately the format is non-standard and cannot be read by most other browsers.
-            </para>
-            </summary>
-        </member>
-        <member name="M:Gallio.Reports.MHtmlReportFormatter.#ctor(Gallio.Runner.Reports.IReportFormatter)">
-            <summary>
-            Creates a report formatter.
-            </summary>
-            <param name="htmlReportFormatter">The HTML report formatter.</param>
-            <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="htmlReportFormatter"/> is null.</exception>
-        </member>
-        <member name="M:Gallio.Reports.MHtmlReportFormatter.Format(Gallio.Runner.Reports.IReportWriter,Gallio.Runner.Reports.ReportFormatterOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
-            <inheritdoc />
-        </member>
-        <member name="T:Gallio.Reports.MultipartMimeReportContainer">
-            <summary>
-            A report container that saves a report as a multipart mime archive in a single file
-            within another container.
-            </summary>
-            <remarks>
-            This is currently specialized for saving HTML reports.
-            It does not support loading reports.
-            </remarks>
-        </member>
-        <member name="M:Gallio.Reports.MultipartMimeReportContainer.#ctor(Gallio.Runner.Reports.IReportContainer)">
-            <summary>
-            Creates the multipart mime report container.
-            </summary>
-            <param name="inner">The container to which the archived report should be saved.</param>
-            <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="inner"/> is null.</exception>
-        </member>
-        <member name="M:Gallio.Reports.MultipartMimeReportContainer.OpenArchive(System.String)">
-            <summary>
-            Opens the archive within the inner container.
-            </summary>
-            <param name="archivePath">The path of the archive to create.</param>
-            <exception cref="T:System.ArgumentNullException">Thrown if <paramref name="archivePath"/> is null.</exception>
-            <exception cref="T:System.InvalidOperationException">Thrown if the archive has already been opened.</exception>
-        </member>
-        <member name="M:Gallio.Reports.MultipartMimeReportContainer.CloseArchive">
-            <summary>
-            Finishes writing out the MIME archive and closes it.
-            Does nothing if the archive is not open.
-            </summary>
-        </member>
-        <member name="P:Gallio.Reports.MultipartMimeReportContainer.ReportName">
-            <inheritdoc />
-        </member>
-        <member name="T:Gallio.Reports.NamespaceDoc">
-            <summary>
-            The Gallio.Reports namespace provides report formatters for common Gallio test report types.
-            </summary>
-        </member>
-        <member name="T:Gallio.Reports.Properties.Resources">
-            <summary>
-              A strongly-typed resource class, for looking up localized strings, etc.
-            </summary>
-        </member>
-        <member name="P:Gallio.Reports.Properties.Resources.ResourceManager">
-            <summary>
-              Returns the cached ResourceManager instance used by this class.
-            </summary>
-        </member>
-        <member name="P:Gallio.Reports.Properties.Resources.Culture">
-            <summary>
-              Overrides the current thread's CurrentUICulture property for all
-              resource lookups using this strongly typed resource class.
-            </summary>
-        </member>
-        <member name="T:Gallio.Reports.ReportResourcesInstaller">
-            <summary>
-            Installs derived resources for reports such as test framework icons.
-            </summary>
-        </member>
-        <member name="M:Gallio.Reports.ReportResourcesInstaller.#ctor(Gallio.Model.ITestKindManager,System.IO.DirectoryInfo,System.IO.FileInfo)">
-            <summary>
-            Initializes the installer.
-            </summary>
-            <param name="testKindManager">The test kind manager, not null.</param>
-            <param name="testKindImageDir">The test kind image directory, not null.</param>
-            <param name="generatedCssFile">The generated CSS file, not null.</param>
-        </member>
-        <member name="M:Gallio.Reports.ReportResourcesInstaller.Install(Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
-            <inheritdoc />
-        </member>
-        <member name="T:Gallio.Reports.XmlReportFormatter">
-            <summary>
-            Formats reports as Xml.
-            </summary>
-            <remarks>
-            <para>
-            Recognizes the following options:
-            <list type="bullet">
-            <listheader>
-            <term>Option</term>
-            <description>Description</description>
-            </listheader>
-            <item>
-            <term>AttachmentContentDisposition</term>
-            <description>Overrides the default attachment content disposition for the format.
-            The content disposition may be "Absent" to exclude attachments, "Link" to
-            include attachments by reference to external files, or "Inline" to include attachments as
-            inline content within the formatted document.  Different formats use different
-            default content dispositions.</description>
-            </item>
-            </list>
-            </para>
-            </remarks>
-        </member>
-        <member name="M:Gallio.Reports.XmlReportFormatter.#ctor">
-            <summary>
-            Creates an Xml report formatter.
-            </summary>
-        </member>
-        <member name="M:Gallio.Reports.XmlReportFormatter.Format(Gallio.Runner.Reports.IReportWriter,Gallio.Runner.Reports.ReportFormatterOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
-            <inheritdoc />
-        </member>
-        <member name="T:Gallio.Reports.XsltReportFormatter">
-            <summary>
-            <para>
-            Generic XSLT report formatter.
-            </para>
-            <para>
-            Recognizes the following options:
-            <list type="bullet">
-            <listheader>
-            <term>Option</term>
-            <description>Description</description>
-            </listheader>
-            <item>
-            <term>AttachmentContentDisposition</term>
-            <description>Overrides the default attachment content disposition for the format.
-            The content disposition may be "Absent" to exclude attachments, "Link" to
-            include attachments by reference to external files, or "Inline" to include attachments as
-            inline content within the formatted document.  Different formats use different
-            default content dispositions.</description>
-            </item>
-            </list>
-            </para>
-            </summary>
-        </member>
-        <member name="M:Gallio.Reports.XsltReportFormatter.#ctor(System.String,System.String,System.IO.DirectoryInfo,System.String,System.String[])">
-            <summary>
-            Creates an XSLT report formatter.
-            </summary>
-            <param name="extension">The preferred extension without a '.'</param>
-            <param name="contentType">The content type of the main report document.</param>
-            <param name="resourceDirectory">The resource directory.</param>
-            <param name="xsltPath">The path of the XSLT relative to the resource directory.</param>
-            <param name="resourcePaths">The paths of the resources (such as images or CSS) to copy
-            to the report directory relative to the resource directory.</param>
-            <exception cref="T:System.ArgumentNullException">Thrown if any arguments are null.</exception>
-        </member>
-        <member name="M:Gallio.Reports.XsltReportFormatter.Format(Gallio.Runner.Reports.IReportWriter,Gallio.Runner.Reports.ReportFormatterOptions,Gallio.Runtime.ProgressMonitoring.IProgressMonitor)">
-            <inheritdoc />
-        </member>
-        <member name="M:Gallio.Reports.XsltReportFormatter.ApplyTransform(Gallio.Runner.Reports.IReportWriter,Gallio.Common.Markup.AttachmentContentDisposition,Gallio.Runner.Reports.ReportFormatterOptions)">
-            <summary>
-            Applies the transform to produce a report.
-            </summary>
-        </member>
-        <member name="M:Gallio.Reports.XsltReportFormatter.CopyResources(Gallio.Runner.Reports.IReportWriter)">
-            <summary>
-            Copies additional resources to the content path within the report.
-            </summary>
-        </member>
-        <member name="M:Gallio.Reports.XsltReportFormatter.PopulateArguments(System.Xml.Xsl.XsltArgumentList,Gallio.Runner.Reports.ReportFormatterOptions,System.String)">
-            <summary>
-            Populates the arguments for the XSL template processing.
-            </summary>
-        </member>
-        <member name="M:Gallio.Reports.XsltReportFormatter.LoadTransform(System.String)">
-            <summary>
-            Loads the XSL transform.
-            </summary>
-            <param name="resolvedXsltPath">The full path of the XSLT.</param>
-            <returns>The transform.</returns>
-        </member>
-        <member name="P:Gallio.Reports.XsltReportFormatter.Transform">
-            <summary>
-            Gets the XSL transform.
-            </summary>
-        </member>
-    </members>
-</doc>

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/1da1cb5b/lib/Gallio.3.2.750/tools/Gallio.UI.dll
----------------------------------------------------------------------
diff --git a/lib/Gallio.3.2.750/tools/Gallio.UI.dll b/lib/Gallio.3.2.750/tools/Gallio.UI.dll
deleted file mode 100644
index 4f186ae..0000000
Binary files a/lib/Gallio.3.2.750/tools/Gallio.UI.dll and /dev/null differ

http://git-wip-us.apache.org/repos/asf/lucenenet/blob/1da1cb5b/lib/Gallio.3.2.750/tools/Gallio.UI.plugin
----------------------------------------------------------------------
diff --git a/lib/Gallio.3.2.750/tools/Gallio.UI.plugin b/lib/Gallio.3.2.750/tools/Gallio.UI.plugin
deleted file mode 100644
index e266855..0000000
--- a/lib/Gallio.3.2.750/tools/Gallio.UI.plugin
+++ /dev/null
@@ -1,127 +0,0 @@
-<?xml version="1.0" encoding="utf-8" ?>
-<plugin pluginId="Gallio.UI"
-        recommendedInstallationPath=""
-        xmlns="http://www.gallio.org/">
-  <traits>
-    <name>Gallio UI Library</name>
-    <version>3.2.0.0</version>
-    <description>Gallio UI components.</description>
-    <icon>plugin://Gallio/Resources/Gallio.ico</icon>
-  </traits>
-
-  <dependencies>
-    <dependency pluginId="Gallio" />
-  </dependencies>
-
-  <files>
-    <file path="Gallio.UI.plugin" />
-    <file path="Gallio.UI.dll" />
-    <file path="Gallio.UI.xml" />
-    
-    <file path="Aga.Controls.dll" />
-    <file path="WeifenLuo.WinFormsUI.Docking.dll" />
-    
-    <file path="Gallio.Common.Splash.dll" />
-    <file path="Gallio.Common.Splash.xml" />
-  </files>
-
-  <assemblies>
-    <assembly fullName="Gallio.UI, Version=3.2.0.0, Culture=neutral, PublicKeyToken=eb9cfa67ee6ab36e"
-              codeBase="Gallio.UI.dll"
-              qualifyPartialName="true" />
-  </assemblies>
-
-  <services>
-    <service serviceId="Gallio.UI.ControlPanelPresenter"
-             serviceType="Gallio.UI.ControlPanel.IControlPanelPresenter, Gallio.UI" />
-
-    <service serviceId="Gallio.UI.ControlPanelTabProvider"
-             serviceType="Gallio.UI.ControlPanel.IControlPanelTabProvider, Gallio.UI" />
-
-    <service serviceId="Gallio.UI.PreferencePaneProvider"
-             serviceType="Gallio.UI.ControlPanel.Preferences.IPreferencePaneProvider, Gallio.UI"
-             defaultComponentType="Gallio.UI.ControlPanel.Preferences.PlaceholderPreferencePaneProvider, Gallio.UI"/>
-
-    <service serviceId="Gallio.UI.EventAggregator"
-         serviceType="Gallio.UI.Events.IEventAggregator, Gallio.UI" />
-
-    <service serviceId="Gallio.UI.TaskManager" 
-             serviceType="Gallio.UI.ProgressMonitoring.ITaskManager, Gallio.UI" />
-
-    <service serviceId="Gallio.UI.TaskQueue"
-         serviceType="Gallio.UI.ProgressMonitoring.ITaskQueue, Gallio.UI" />
-
-    <service serviceId="Gallio.UI.TaskRunner"
-         serviceType="Gallio.UI.ProgressMonitoring.ITaskRunner, Gallio.UI" />
-
-    <service serviceId="Gallio.UI.UnhandledExceptionPolicy"
-         serviceType="Gallio.UI.Common.Policies.IUnhandledExceptionPolicy, Gallio.UI" />
-  </services>
-
-  <components>
-    <component componentId="Gallio.UI.ControlPanelPresenter"
-               serviceId="Gallio.UI.ControlPanelPresenter"
-               componentType="Gallio.UI.ControlPanel.ControlPanelPresenter, Gallio.UI" />
-
-    <component componentId="Gallio.UI.PreferenceControlPanelTabProvider"
-               serviceId="Gallio.UI.ControlPanelTabProvider"
-               componentType="Gallio.UI.ControlPanel.Preferences.PreferenceControlPanelTabProvider, Gallio.UI">
-      <traits>
-        <name>Preferences</name>
-        <order>0</order>
-      </traits>
-    </component>
-
-    <component componentId="Gallio.UI.PluginControlPanelTabProvider"
-               serviceId="Gallio.UI.ControlPanelTabProvider"
-               componentType="Gallio.UI.ControlPanel.Plugins.PluginControlPanelTabProvider, Gallio.UI">
-      <traits>
-        <name>Plugins</name>
-        <order>100</order>
-      </traits>
-    </component>
-
-    <component componentId="Gallio.UI.PlaceholderPreferencePaneProvider"
-               serviceId="Gallio.UI.PreferencePaneProvider">
-      <traits>
-        <path>Gallio</path>
-        <order>-100</order>
-        <icon>plugin://Gallio/Resources/Gallio.ico</icon>
-      </traits>
-    </component>
-
-    <component componentId="Gallio.UI.RuntimePreferencePaneProvider"
-               serviceId="Gallio.UI.PreferencePaneProvider"
-               componentType="Gallio.UI.ControlPanel.Preferences.RuntimePreferencePaneProvider, Gallio.UI">
-      <traits>
-        <path>Gallio/Runtime</path>
-        <icon>plugin://Gallio/Resources/Gallio.ico</icon>
-        <scope>Machine</scope>
-      </traits>
-    </component>
-
-    <component componentId="Gallio.UI.RuntimePreferencePaneCommitterElevatedCommand"
-               serviceId="Gallio.ElevatedCommand"
-               componentType="Gallio.UI.ControlPanel.Preferences.RuntimePreferencePaneCommitterElevatedCommand, Gallio.UI" />
-
-    <component componentId="Gallio.UI.EventAggregator"
-           serviceId="Gallio.UI.EventAggregator"
-           componentType="Gallio.UI.Events.EventAggregator, Gallio.UI" />
-    
-    <component componentId="Gallio.UI.TaskManager" 
-               serviceId="Gallio.UI.TaskManager" 
-               componentType="Gallio.UI.ProgressMonitoring.TaskManager, Gallio.UI" />
-
-    <component componentId="Gallio.UI.TaskQueue"
-           serviceId="Gallio.UI.TaskQueue"
-           componentType="Gallio.UI.ProgressMonitoring.TaskQueue, Gallio.UI" />
-
-    <component componentId="Gallio.UI.TaskRunner"
-           serviceId="Gallio.UI.TaskRunner"
-           componentType="Gallio.UI.ProgressMonitoring.TaskRunner, Gallio.UI" />
-    
-    <component componentId="Gallio.UI.UnhandledExceptionPolicy" 
-               serviceId="Gallio.UI.UnhandledExceptionPolicy" 
-               componentType="Gallio.UI.Common.Policies.UnhandledExceptionPolicy, Gallio.UI" />
-  </components>
-</plugin>
\ No newline at end of file