This repository has been archived by the owner on May 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
59 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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; | ||
} | ||
} | ||
} |