G
Guest
I have a problem... A webservice I built check the version of an assembly by
using this code:
app = [Assembly].LoadFrom(Server.MapPath(appName & "\" & assemblyName))
' Return it's version
Return app.GetName.Version.ToString
when another app is uploading a new version of that file I get a
securityexception stating the file is in use...
The ony code i have that accesses that file is the above code... so what is
going on?
I can't unload an assembly without disposing the entire app domain...
/Henrik
using this code:
app = [Assembly].LoadFrom(Server.MapPath(appName & "\" & assemblyName))
' Return it's version
Return app.GetName.Version.ToString
when another app is uploading a new version of that file I get a
securityexception stating the file is in use...
The ony code i have that accesses that file is the above code... so what is
going on?
I can't unload an assembly without disposing the entire app domain...
/Henrik