Hello CS,
From your description, my understanding on this issue is that you have an
main ASP.NET 2.0 web application which has been precompiled, and you want
to add some additional components(modules) into this precompiled
application, however, you found that the app_GlobalResources (from the
additional modules ) can not be merged into the main application, correct?
If there is anything I missed, please feel free to let me know.
If this is the case, based on my understanding, I can not merge to
precompiled web application(or modules) due to the ASP.NET 2.0 web
application's precompilation mechanism. For those top level
assemblies(such as the App_Code, App_Theme, App_GlobalResource....), after
the precompiled assemblies be generated, there will has a
"TopAssembly.compiled" file associated with each of them, this file will
contains the url/path info and the assembly name(so far there is only one
assembly allowed in the mapping file). e.g.
============================
<?xml version="1.0" encoding="utf-8"?>
<preserve resultType="9"
virtualPath="/ASPNET/V2/WebSites/URLSite/App_GlobalResources/"
hash="ffffffffd6631f7c" filehash="d55f1bc4c9c96be1" flags="140000"
assembly="App_GlobalResources" resHash="4bed9b2f97b7ef6b" />
============================
BTW, how is your main site and the additional modules built or is it
possible that you merge the additiona modules into the main site before
precompilation? the current precompilation modle(no matter we use the
WebDeployment Project or not) only support assemblies merging at
precompilation time, but not after application be precompiled.
Please feel free to let me know if you have any other consideration or
questions on this.
Sincerely,
Steven Cheng
Microsoft MSDN Online Support Lead
==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscriptions/managednewsgroups/default.aspx#notif
ications.
Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscriptions/support/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.