main
1<?xml version="1.0" encoding="utf-8"?>
2<doc>
3 <assembly>
4 <name>Gallio.MSBuildTasks</name>
5 </assembly>
6 <members>
7 <member name="T:Gallio.MSBuildTasks.Gallio">
8 <summary>An MSBuild task that provides support for running Gallio tests.</summary>
9 </member>
10 <member name="P:Gallio.MSBuildTasks.Gallio.ApplicationBaseDirectory">
11 <summary>
12 <para> The relative or absolute path of the application base directory. </para>
13 <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>
14 <para> The default is "". </para>
15 </summary>
16 </member>
17 <member name="P:Gallio.MSBuildTasks.Gallio.Assemblies">
18 <summary>The list of relative or absolute paths of test assembly files to execute. This is required.</summary>
19 </member>
20 <member name="P:Gallio.MSBuildTasks.Gallio.AssertCount">
21 <summary>Gets the number of assertions evaluated.</summary>
22 </member>
23 <member name="P:Gallio.MSBuildTasks.Gallio.DoNotRun">
24 <summary>Sets whether to load the tests but not run them. This option may be used to produce a report that contains test metadata for consumption by other tools.</summary>
25 </member>
26 <member name="P:Gallio.MSBuildTasks.Gallio.Duration">
27 <summary>Gets the duration of the tests execution in seconds.</summary>
28 </member>
29 <member name="P:Gallio.MSBuildTasks.Gallio.EchoResults">
30 <summary>Sets whether to echo results to the screen as tests finish. If this option is set to true, the default, test results are echoed to the console in varying detail depending on the current verbosity level. Otherwise only final summary statistics are displayed.</summary>
31 </member>
32 <member name="P:Gallio.MSBuildTasks.Gallio.ExitCode">
33 <summary>Gets the exit code of the tests execution.</summary>
34 </member>
35 <member name="P:Gallio.MSBuildTasks.Gallio.FailedCount">
36 <summary>Gets the total number of test cases that were run and failed.</summary>
37 </member>
38 <member name="P:Gallio.MSBuildTasks.Gallio.Filter">
39 <summary>Sets the filter expression to apply, which consists of one or more filter rules that may be combined using 'and', 'or', and 'not' and grouped with parentheses. A filter rule consists of a filter key followed by one or more comma-delimited matching values in the form 'key: value, "quoted value", /regular expression/'.</summary>
40 </member>
41 <member name="P:Gallio.MSBuildTasks.Gallio.HintDirectories">
42 <summary>The list of directories used for loading assemblies and other dependent resources.</summary>
43 </member>
44 <member name="P:Gallio.MSBuildTasks.Gallio.IgnoreAnnotations">
45 <summary>Sets whether to ignore annotations when determining the result code. If false (default), then error annotations, usually indicative of broken tests, will cause a failure result to be generated.</summary>
46 </member>
47 <member name="P:Gallio.MSBuildTasks.Gallio.IgnoreFailures">
48 <summary>Sets whether test failures will be ignored and allow the build to proceed. When set to <c>false</c>, test failures will cause the build to fail.</summary>
49 </member>
50 <member name="P:Gallio.MSBuildTasks.Gallio.InconclusiveCount">
51 <summary>Gets the total number of test cases that ran and were inconclusive.</summary>
52 </member>
53 <member name="P:Gallio.MSBuildTasks.Gallio.PassedCount">
54 <summary>Gets the total number of test cases that were run and passed.</summary>
55 </member>
56 <member name="P:Gallio.MSBuildTasks.Gallio.PluginDirectories">
57 <summary>Additional Gallio plugin directories to search recursively.</summary>
58 </member>
59 <member name="P:Gallio.MSBuildTasks.Gallio.ReportDirectory">
60 <summary>Sets the name of the directory where the reports will be put.</summary>
61 </member>
62 <member name="P:Gallio.MSBuildTasks.Gallio.ReportNameFormat">
63 <summary>Sets the format string to use to generate the reports filenames.</summary>
64 </member>
65 <member name="P:Gallio.MSBuildTasks.Gallio.ReportTypes">
66 <summary>A list of the types of reports to generate, separated by semicolons.</summary>
67 </member>
68 <member name="P:Gallio.MSBuildTasks.Gallio.RunCount">
69 <summary>Gets the total number of test cases that were run.</summary>
70 </member>
71 <member name="P:Gallio.MSBuildTasks.Gallio.RunnerExtensions">
72 <summary>
73 <para> Specifies the type, assembly, and parameters of custom test runner extensions to use during the test run in the form: '[Namespace.]Type,Assembly[;Parameters]'. </para>
74 <para> eg. 'FancyLogger,MyCustomExtensions.dll;SomeParameters' </para>
75 </summary>
76 </member>
77 <member name="P:Gallio.MSBuildTasks.Gallio.RunnerType">
78 <summary>Sets the type of test runner to use.</summary>
79 </member>
80 <member name="P:Gallio.MSBuildTasks.Gallio.ShadowCopy">
81 <summary>
82 <para> Enables shadow copying when set to true. </para>
83 <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>
84 <para> The default is false. </para>
85 </summary>
86 </member>
87 <member name="P:Gallio.MSBuildTasks.Gallio.ShowReports">
88 <summary>Sets whether to show generated reports in a window using the default system application registered to the report file type.</summary>
89 </member>
90 <member name="P:Gallio.MSBuildTasks.Gallio.SkippedCount">
91 <summary>Gets the total number of test cases that did not run because they were skipped.</summary>
92 </member>
93 <member name="P:Gallio.MSBuildTasks.Gallio.StepCount">
94 <summary>Gets the total number of test steps run.</summary>
95 </member>
96 <member name="P:Gallio.MSBuildTasks.Gallio.TestCount">
97 <summary>Gets the total number of test cases run.</summary>
98 </member>
99 <member name="P:Gallio.MSBuildTasks.Gallio.WorkingDirectory">
100 <summary>
101 <para> The relative or absolute path of the working directory. </para>
102 <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>
103 <para> The default is "". </para>
104 </summary>
105 </member>
106 <member name="M:Gallio.MSBuildTasks.Gallio.Execute">
107 <summary>When overridden in a derived class, executes the task.</summary>
108 <returns>true if the task successfully executed; otherwise, false.</returns>
109 </member>
110 </members>
111</doc>