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