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