What assemblies are loaded by default when you create a new ASP.NET 2.0 Web Application Project ?
views:
198answers:
3
+1
Q:
What assemblies are loaded by default when you create a new ASP.NET 2.0 Web Application Project ?
+1
A:
The ones you reference plus the mandatory ones like : mscorlib, System, System.Web, System.Xml To check which assemblies are referenced in a new web application, check the References subfolder in the Solution Explorer.
Pop Catalin
2008-09-25 15:32:55
+2
A:
System
System.Configuration
System.Data
System.Drawing
System.EnterpriseServices
System.Web
System.Web.Mobile
System.Web.Services
System.XML
bugBurger
2008-09-25 15:43:12
+1
A:
Generate a list of loaded assemblies in the current application domain using AppDomain.GetAssemblies()
to see everything that's loaded
Assembly[] loadedAssemblies =
AppDomain.CurrentDomain.GetAssemblies();
foreach (Assembly assembly in loadedAssemblies)
{
Response.Write(assembly.FullName);
Response.Write("<br />");
}
Joel D'Souza
2008-09-25 15:54:07