2 writes to OutputAssembly
dotnet-svcutil-lib (2)
FrameworkFork\Microsoft.CodeDom\Microsoft\CSharpCodeProvider.cs (1)
3881options.OutputAssembly = results.TempFiles.AddExtension(extension, !options.GenerateInMemory);
FrameworkFork\Microsoft.CodeDom\Microsoft\VBCodeProvider.cs (1)
3212options.OutputAssembly = results.TempFiles.AddExtension(extension, !options.GenerateInMemory);
14 references to OutputAssembly
dotnet-svcutil-lib (14)
FrameworkFork\Microsoft.CodeDom\Microsoft\CSharpCodeProvider.cs (7)
640sb.Append(options.OutputAssembly); 3878if (options.OutputAssembly == null || options.OutputAssembly.Length == 0) 3886new FileStream(options.OutputAssembly, FileMode.Create, FileAccess.ReadWrite).Dispose(); 3938File.Delete(options.OutputAssembly); 3943results.PathToAssembly = options.OutputAssembly; 3947results.CompiledAssembly = Assembly.Load(new AssemblyName(options.OutputAssembly));
FrameworkFork\Microsoft.CodeDom\Microsoft\VBCodeProvider.cs (7)
627sb.Append(options.OutputAssembly); 3210if (options.OutputAssembly == null || options.OutputAssembly.Length == 0) 3217new FileStream(options.OutputAssembly, FileMode.Create, FileAccess.ReadWrite).Close(); 3221String outputAssemblyFile = options.OutputAssembly; 3298results.PathToAssembly = options.OutputAssembly; 3302results.CompiledAssembly = Assembly.Load(new AssemblyName(options.OutputAssembly));