I'm running across a strange issue that's resulting from CSC.exe created the XMLSerializer library for eftFTPNetPro.dll on a very heavily taxed machine. Once I start to upload files, CSC spawns and runs this command:
/t:library /utf8output /R:"C:\Windows\assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll" /R:"C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll" /R:"C:\Windows\assembly\GAC_MSIL\System.Xml\2.0.0.0__b77a5c561934e089\System.Xml.dll" /R:"C:\DigitalDistributionTransfer\GUI\edtFTPnetPRO.dll" /out:"C:\Users\DDUser\AppData\Local\Temp\yj-be0j7.dll" /debug- /optimize+ /nostdlib /D:_DYNAMIC_XMLSERIALIZER_COMPILATION "C:\Users\DDUser\AppData\Local\Temp\yj-be0j7.0.cs"
If the machine is too taxed, it came time out and cause the application to fail. Obviusly, the easiest answer is to have a less taxed box but I was wondering if there's a way to generated the XmlSerializers dll ahead of time. I've tried using SGEN, but get an error.
Anyone else run into this?