f367f9c01f
The discover process still needs a ton of work but this at least puts it behind a slightly better interface.
14 lines
259 B
C#
14 lines
259 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace xunit.runner.data
|
|
{
|
|
public static class Constants
|
|
{
|
|
public const string PipeName = "xunit.runners.pipe";
|
|
}
|
|
}
|