forked from Inedo/bmx-nunit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NUnitConfigurer.cs
38 lines (34 loc) · 1.22 KB
/
NUnitConfigurer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
using System.ComponentModel;
using Inedo.BuildMaster;
using Inedo.BuildMaster.Extensibility.Configurers.Extension;
[assembly: ExtensionConfigurer(typeof(Inedo.BuildMasterExtensions.NUnit.NUnitConfigurer))]
namespace Inedo.BuildMasterExtensions.NUnit
{
public sealed class NUnitConfigurer : ExtensionConfigurerBase
{
/// <summary>
/// Initializes a new instance of the <see cref="NUnitConfigurer"/> class.
/// </summary>
public NUnitConfigurer()
{
}
/// <summary>
/// Gets or sets the path to nunit-console.exe.
/// </summary>
[Persistent]
[DisplayName("NUnit Console Executable Path")]
[Description(@"The path to nunit-console.exe, typically: <br /><br />"
+ @"""C:\Program Files (x86)\NUnit 2.X.X\bin\nunit-console.exe")]
public string NUnitConsoleExePath { get; set; }
/// <summary>
/// Returns a <see cref="System.String" /> that represents this instance.
/// </summary>
/// <returns>
/// A <see cref="System.String" /> that represents this instance.
/// </returns>
public override string ToString()
{
return string.Empty;
}
}
}