У меня есть этот код, написанный для запуска моих тестовых сценариев селена (файл .cs)
using NUnitLite;
namespace myProject
{
public class Runner
{
public static int Main(string[] args)
{
return new AutoRun().Execute(args);
}
}
}
когда я пытаюсь запустить это с помощью командной строки, он выдает
error CS0246: The type or namespace name 'NUnitLite' could not be found (are you missing a using
directive or an assembly reference?)
Я пытался добавить NUnitLite.dll в качестве ссылки, но он не позволяет мне сказать This component is already automatically referenced by the build system.