1 write to PipeName
VBCSCompiler.UnitTests (1)
ServerUtil.cs (1)
68
PipeName
= pipeName;
54 references to PipeName
VBCSCompiler.UnitTests (54)
BuildServerConnectionTests.cs (1)
74
serverData.
PipeName
,
CompilerServerTests.cs (49)
231
finalFlags = $"{flags} /shared:{serverData.
PipeName
} /pathmap:{tempDir.Path}=/ /out:{outFile} {srcFile}";
298
$"/shared:{serverData.
PipeName
} /nologo hello.cs",
315
var result = RunCommandLineCompiler(CSharpCompilerClientExecutable, $"/shared:{serverData.
PipeName
} /nologo hello.cs", _tempDirectory, s_helloWorldSrcCs, shouldRunOnServer: false);
330
var result = RunCommandLineCompiler(CSharpCompilerClientExecutable, $"/shared:{serverData.
PipeName
} /nologo hello.cs", _tempDirectory, files, redirectEncoding: Encoding.ASCII, shouldRunOnServer: false);
347
$"/shared:{serverData.
PipeName
} /utf8output /nologo /t:library {srcFile}",
369
$"/shared:{serverData.
PipeName
} /vbruntime* /nologo test.vb",
393
$"/shared:{serverData.
PipeName
} /vbruntime* /utf8output /nologo /t:library {srcFile}",
414
var result = RunCommandLineCompiler(BasicCompilerClientExecutable, $"/shared:{serverData.
PipeName
} /nologo /vbruntime* hello.vb", _tempDirectory, s_helloWorldSrcVb, shouldRunOnServer: false);
426
var result = RunCommandLineCompiler(CSharpCompilerClientExecutable, $"/shared:{serverData.
PipeName
} /nologo hello.cs", _tempDirectory, s_helloWorldSrcCs);
439
var result = RunCommandLineCompiler(CSharpCompilerClientExecutable, $"-shared:{serverData.
PipeName
} /nologo hello.cs", _tempDirectory, s_helloWorldSrcCs);
473
$"/shared:{serverData.
PipeName
} /nologo /t:library /platform:x86 c.cs",
488
$"/shared:{serverData.
PipeName
} /vbruntime* /nologo /t:library /platform:x86 c.vb",
502
$"/shared:{serverData.
PipeName
} /nologo /r:mscorlib.dll hello.cs",
516
$"/shared:{serverData.
PipeName
} /nologo /vbruntime* hello.vb",
530
$"/shared:{serverData.
PipeName
} /nologo /r:mscorlib.dll /vbruntime* hello.vb",
553
var result = RunCommandLineCompiler(CSharpCompilerClientExecutable, $"/shared:{serverData.
PipeName
} hello.cs", _tempDirectory, files);
582
var result = RunCommandLineCompiler(BasicCompilerClientExecutable, $"/shared:{serverData.
PipeName
} /vbruntime* hellovb.vb", _tempDirectory, files);
600
var result = RunCommandLineCompiler(CSharpCompilerClientExecutable, $"/shared:{serverData.
PipeName
} missingfile.cs", _tempDirectory);
618
var result = RunCommandLineCompiler(CSharpCompilerClientExecutable, $"/shared:{serverData.
PipeName
} /r:missing.dll hello.cs", _tempDirectory, s_helloWorldSrcCs);
643
var result = RunCommandLineCompiler(CSharpCompilerClientExecutable, $"/shared:{serverData.
PipeName
} /r:Lib.cs app.cs", _tempDirectory, files);
661
var result = RunCommandLineCompiler(BasicCompilerClientExecutable, $"/shared:{serverData.
PipeName
} /vbruntime* missingfile.vb", _tempDirectory);
691
var result = RunCommandLineCompiler(BasicCompilerClientExecutable, $"/shared:{serverData.
PipeName
} /nologo /vbruntime* /r:missing.dll hellovb.vb", _tempDirectory, files);
720
var result = RunCommandLineCompiler(BasicCompilerClientExecutable, $"/shared:{serverData.
PipeName
} /nologo /vbruntime* /r:Lib.vb app.vb", _tempDirectory, files);
754
var result = RunCommandLineCompiler(BasicCompilerClientExecutable, $"src1.vb /shared:{serverData.
PipeName
} /nologo /t:library /out:lib.dll", rootDirectory, files);
770
result = RunCommandLineCompiler(BasicCompilerClientExecutable, $"hello1.vb /shared:{serverData.
PipeName
} /nologo /vbruntime* /r:lib.dll /out:hello1.exe", rootDirectory, files);
789
result = RunCommandLineCompiler(BasicCompilerClientExecutable, $"hello2.vb /shared:{serverData.
PipeName
} /nologo /vbruntime* /r:lib.dll /out:hello2.exe", rootDirectory, files);
811
result = RunCommandLineCompiler(BasicCompilerClientExecutable, $"src2.vb /shared:{serverData.
PipeName
} /nologo /t:library /out:lib.dll", rootDirectory, files);
827
result = RunCommandLineCompiler(BasicCompilerClientExecutable, $"hello3.vb /shared:{serverData.
PipeName
} /nologo /vbruntime* /r:lib.dll /out:hello3.exe", rootDirectory, files);
869
var result = RunCommandLineCompiler(CSharpCompilerClientExecutable, $"src1.cs /shared:{serverData.
PipeName
} /nologo /t:library /out:lib.dll", rootDirectory, files);
884
result = RunCommandLineCompiler(CSharpCompilerClientExecutable, $"hello1.cs /shared:{serverData.
PipeName
} /nologo /r:lib.dll /out:hello1.exe", rootDirectory, files);
904
result = RunCommandLineCompiler(CSharpCompilerClientExecutable, $"hello2.cs /shared:{serverData.
PipeName
} /nologo /r:lib.dll /out:hello2.exe", rootDirectory, files);
925
result = RunCommandLineCompiler(CSharpCompilerClientExecutable, $"src2.cs /shared:{serverData.
PipeName
} /nologo /t:library /out:lib.dll", rootDirectory, files);
940
result = RunCommandLineCompiler(CSharpCompilerClientExecutable, $"hello3.cs /shared:{serverData.
PipeName
} /nologo /r:lib.dll /out:hello3.exe", rootDirectory, files);
1034
tasks[i] = RunCompilationAsync(language, serverData.
PipeName
, i, compilationDir);
1063
$"src1.cs /shared:{serverData.
PipeName
} /nologo /t:library /out:" + Path.Combine(libDirectory.Path, "lib.dll"),
1080
result = RunCommandLineCompiler(CSharpCompilerClientExecutable, $"hello1.cs /shared:{serverData.
PipeName
} /nologo /r:lib.dll /out:hello1.exe", _tempDirectory, files,
1114
$"src1.vb /shared:{serverData.
PipeName
} /vbruntime* /nologo /t:library /out:" + Path.Combine(libDirectory.Path, "lib.dll"),
1132
result = RunCommandLineCompiler(BasicCompilerClientExecutable, $"hello1.vb /shared:{serverData.
PipeName
} /nologo /vbruntime* /r:lib.dll /out:hello1.exe", _tempDirectory, files,
1153
$"/shared:{serverData.
PipeName
} /nologo /t:library {srcFile}",
1176
$"/shared:{serverData.
PipeName
} /nologo /vbruntime* /t:library {srcFile}",
1202
$"/shared:{serverData.
PipeName
} /utf8output /nologo /t:library {srcFile}",
1225
$"/shared:{serverData.
PipeName
} /utf8output /nologo /vbruntime* /t:library {srcFile}",
1265
$"ref_mscorlib2.cs /shared:{serverData.
PipeName
} /nologo /nostdlib /noconfig /t:library /r:mscorlib20.dll",
1288
$"main.cs /shared:{serverData.
PipeName
} /nologo /nostdlib /noconfig /r:mscorlib40.dll /r:ref_mscorlib2.dll",
1310
$"/shared:{serverData.
PipeName
} /noconfig @{rspFile}",
1334
$"/shared:{serverData.
PipeName
} /noconfig @{rspFile}",
1401
$"/shared:{serverData.
PipeName
} /nologo /t:library {srcFile}",
1435
$"/shared:{serverData.
PipeName
} /vbruntime* /nologo /t:library {srcFile}",
1446
$"/shared:{serverData.
PipeName
} /nologo /t:library {srcFile}",
ServerUtil.cs (3)
117
var mutexName = BuildServerConnection.GetServerMutexName(
PipeName
);
127
PipeName
,
153
Assert.True(NamedPipeTestUtil.IsPipeFullyClosed(
PipeName
));
VBCSCompilerServerTests.cs (1)
67
var exitCode = await RunShutdownAsync(serverData.
PipeName
, waitForProcess: false);