c# - Why is this assembly a temporary asp.net dll? -
i have precompiled web site project single dll whole site. when run page , at:
assembly.getassembly(this.gettype())
it resolving : app_web_qgqyxtge
but when make call to:
assembly.getexecutingassembly()
this resolves :
upload, version=1.0.0.0, culture=neutral, publickeytoken=null
i'm struggling see why assembly of page looking @ looks temporary asp.net dll , not compiled dll seems executing current code?
that's because using web site project in contrast web application project , classes stored in app_code
folder automatically compiled temporary assemblies.
Comments
Post a Comment