Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Prevent CompileAssemblyFromSource from generate temp files with duplicate file name

My WCF application uses code compiled in run time to calculate some values of a report. I'm using CSharpCodeProvider.CompileAssemblyFromSource to compile the code. If the client (a Silverlight application) request a report while another report is being calculated the CSharpCodeProvider.CompileAssemblyFromSource generates temp files with duplicated name, what lead to a IOException ("The file 'C:\Windows\TEMP\uviewdyd.out' already exists.")

Does anyone know how to prevent this?

like image 513
Andre Nascentes Avatar asked Nov 13 '22 19:11

Andre Nascentes


1 Answers

I don't think there is. It looks like all three variants (file, DOM and source) create temp files (source).
The best way seems to use different temp paths for each compilation. See https://stackoverflow.com/a/37136996/5682035:

CSharpCodeProvider prov = new CSharpCodeProvider();
CompilerParameters parms = new CompilerParameters();
parms.TempFiles = new TempFileCollection(tempdir);
like image 160
PiranhA Avatar answered Dec 22 '22 07:12

PiranhA