18 writes to OutputAssembly
System (3)
compmod\microsoft\csharp\csharpcodeprovider.cs (1)
3394
options.
OutputAssembly
= results.TempFiles.AddExtension(extension, !options.GenerateInMemory);
compmod\microsoft\visualbasic\VBCodeProvider.cs (1)
2827
options.
OutputAssembly
= results.TempFiles.AddExtension(extension, !options.GenerateInMemory);
compmod\system\codedom\compiler\CodeCompiler.cs (1)
343
options.
OutputAssembly
= results.TempFiles.AddExtension(extension, !options.GenerateInMemory);
System.Data.SqlXml (1)
System\Xml\Xsl\Xslt\Scripts.cs (1)
287
compilParams.
OutputAssembly
= asmPath;
System.Web (4)
Compilation\AssemblyBuilder.cs (2)
686
compilParams.
OutputAssembly
= Path.Combine(dir, OutputAssemblyName + ".resources.dll");
689
compilParams.
OutputAssembly
= Path.Combine(dir, OutputAssemblyName + ".dll");
Compilation\BuildManager.cs (1)
2121
compilerParameters.
OutputAssembly
= resultAssembly.Location;
Configuration\BrowserCapabilitiesCodeGenerator.cs (1)
814
compilerParameters.
OutputAssembly
= _browsersDirectory + "\\ASP.BrowserCapsFactory.dll";
System.Workflow.ComponentModel (9)
AuthoringOM\Compiler\CompileXomlTask.cs (2)
555
compilerParameters.
OutputAssembly
= AssemblyName;
561
compilerParameters.
OutputAssembly
+= extension;
AuthoringOM\Compiler\XomlCompiler.cs (5)
508
parameters.
OutputAssembly
= createdTempFileName + ".dll";
520
parameters.
OutputAssembly
= info.FullName + "\\" + parameters.OutputAssembly;
555
parameters.
OutputAssembly
= originalOutputAssembly;
882
localAssemblyPath = clonedParams.
OutputAssembly
= clonedParams.TempFiles.AddExtension("dll");
911
localAssemblyPath = clonedParams.
OutputAssembly
= tempAssemblyDirectory + "\\" + Path.GetFileName(clonedParams.OutputAssembly);
AuthoringOM\Compiler\XomlCompilerHelpers.cs (1)
359
clonedParams.
OutputAssembly
= sourceParams.OutputAssembly;
AuthoringOM\Compiler\XomlCompilerParameters.cs (1)
369
this.
OutputAssembly
= parameters.OutputAssembly;
System.Xml (1)
System\Xml\Serialization\Compiler.cs (1)
183
parameters.
OutputAssembly
= assemblyName;
34 references to OutputAssembly
System (21)
compmod\microsoft\csharp\csharpcodeprovider.cs (9)
611
sb.Append(options.
OutputAssembly
);
3392
if (options.
OutputAssembly
== null || options.
OutputAssembly
.Length == 0) {
3399
new FileStream(options.
OutputAssembly
, FileMode.Create, FileAccess.ReadWrite).Close();
3449
File.Delete(options.
OutputAssembly
);
3454
results.PathToAssembly = options.
OutputAssembly
;
3461
assemblyBuff = File.ReadAllBytes(options.
OutputAssembly
);
3464
using (FileStream fs = new FileStream(options.
OutputAssembly
, FileMode.Open, FileAccess.Read, FileShare.Read))
3467
throw new IOException(SR.GetString(SR.FileIntegrityCheckFailed, options.
OutputAssembly
));
compmod\microsoft\visualbasic\VBCodeProvider.cs (5)
607
sb.Append(options.
OutputAssembly
);
2826
if (options.
OutputAssembly
== null || options.
OutputAssembly
.Length == 0) {
2832
new FileStream(options.
OutputAssembly
, FileMode.Create, FileAccess.ReadWrite).Close();
2836
String outputAssemblyFile = options.
OutputAssembly
;
compmod\system\codedom\compiler\CodeCompiler.cs (7)
341
if (options.
OutputAssembly
== null || options.
OutputAssembly
.Length == 0) {
348
new FileStream(options.
OutputAssembly
, FileMode.Create, FileAccess.ReadWrite).Close();
398
File.Delete(options.
OutputAssembly
);
402
FileStream fs = new FileStream(options.
OutputAssembly
, FileMode.Open, FileAccess.Read, FileShare.Read);
417
throw new IOException(SR.GetString(SR.FileIntegrityCheckFailed, options.
OutputAssembly
));
431
results.PathToAssembly = options.
OutputAssembly
;
System.Web (3)
Compilation\AssemblyBuilder.cs (3)
693
if (File.Exists(compilParams.
OutputAssembly
))
694
Util.RemoveOrRenameFile(compilParams.
OutputAssembly
);
1080
DiskBuildResultCache.TryDeleteFile(compilParams.
OutputAssembly
);
System.Workflow.ComponentModel (8)
AuthoringOM\Compiler\XomlCompiler.cs (6)
495
string originalOutputAssembly = parameters.
OutputAssembly
;
504
if (string.IsNullOrEmpty(parameters.
OutputAssembly
))
520
parameters.OutputAssembly = info.FullName + "\\" + parameters.
OutputAssembly
;
550
string outputAssembly = parameters.
OutputAssembly
;
881
if (string.IsNullOrEmpty(parameters.
OutputAssembly
))
911
localAssemblyPath = clonedParams.OutputAssembly = tempAssemblyDirectory + "\\" + Path.GetFileName(clonedParams.
OutputAssembly
);
AuthoringOM\Compiler\XomlCompilerHelpers.cs (1)
359
clonedParams.OutputAssembly = sourceParams.
OutputAssembly
;
AuthoringOM\Compiler\XomlCompilerParameters.cs (1)
369
this.OutputAssembly = parameters.
OutputAssembly
;
System.Xml (2)
System\Xml\Serialization\Compiler.cs (2)
178
if (parent != null && (parameters.
OutputAssembly
== null || parameters.
OutputAssembly
.Length ==0)) {