Exemplo n.º 1
0
        public static void Main(string[] args)
        {
            XUnitRunner.PreloadAssemblies();
            RemoteProcessServer server = new RemoteProcessServer();

            server.Connect(args, new RemoteXUnitRunner(server));
        }
Exemplo n.º 2
0
        public static void Main(string[] args)
        {
            RemoteProcessServer server = new RemoteProcessServer();
            var builderEngine          = new BuildEngine(server);

            server.Connect(args, builderEngine);
            builderEngine.WaitHandle.WaitOne();
        }
Exemplo n.º 3
0
        public static void Main(string[] args)
        {
            // This is required for MSBuild to properly load the .exe.config configuration file for this executable.
            Environment.SetEnvironmentVariable("MSBUILD_EXE_PATH", typeof(MainClass).Assembly.Location);

            RemoteProcessServer server = new RemoteProcessServer();

            server.Connect(args, new AssemblyResolver(server));
        }
Exemplo n.º 4
0
        public static void Main(string[] args)
        {
            // This is required for MSBuild to properly load the .exe.config configuration file for this executable.
            Environment.SetEnvironmentVariable("MSBUILD_EXE_PATH", typeof(MainClass).Assembly.Location);

            // Disable VBCSCompiler until it is reliable on mono. Currently leaves orphaned processes for VB projects taking up 100% CPU.
            // https://github.com/mono/mono/issues/11939
            Environment.SetEnvironmentVariable("UseSharedCompilation", bool.FalseString);

            RemoteProcessServer server = new RemoteProcessServer();

            server.Connect(args, new AssemblyResolver(server));
        }
Exemplo n.º 5
0
        public static void Main(string[] args)
        {
            RemoteProcessServer server = new RemoteProcessServer();

            server.Connect(args, new AssemblyResolver(server));
        }
Exemplo n.º 6
0
 public static void Main(string [] args)
 {
     server = new RemoteProcessServer();
     server.Connect(args, new NUnitTestRunner(server));
 }