c#-4.0 asp.net-4.0 precompiled

c# 4.0 - El directorio ''/ website/App_Code/'' no está permitido porque la aplicación está precompilada



c#-4.0 asp.net-4.0 (3)

¿Cómo puedo resolver el problema que aparece a continuación cuando ejecuto mi aplicación web precompilada?

Server Error in ''/CRM'' Application. The directory ''/CRM/App_Code/'' is not allowed because the application is precompiled. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Web.HttpException: The directory ''/CRM/App_Code/'' is not allowed because the application is precompiled. Source Error: An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. Stack Trace: [HttpException (0x80004005): The directory ''/CRM/App_Code/'' is not allowed because the application is precompiled.] System.Web.Compilation.CodeDirectoryCompiler.GetCodeDirectoryAssembly(VirtualPath virtualDir, CodeDirectoryType dirType, String assemblyName, StringSet excludedSubdirectories, Boolean isDirectoryAllowed) +8777420 System.Web.Compilation.BuildManager.CompileCodeDirectory(VirtualPath virtualDir, CodeDirectoryType dirType, String assemblyName, StringSet excludedSubdirectories) +125 System.Web.Compilation.BuildManager.CompileCodeDirectories() +387 System.Web.Compilation.BuildManager.EnsureTopLevelFilesCompiled() +248 [HttpException (0x80004005): The directory ''/CRM/App_Code/'' is not allowed because the application is precompiled.] System.Web.Compilation.BuildManager.ReportTopLevelCompilationException() +62 System.Web.Compilation.BuildManager.EnsureTopLevelFilesCompiled() +421 System.Web.Compilation.BuildManager.CallAppInitializeMethod() +31 System.Web.Hosting.HostingEnvironment.Initialize(ApplicationManager appManager, IApplicationHost appHost, IConfigMapPathFactory configMapPathFactory, HostingEnvironmentParameters hostingParameters, PolicyLevel policyLevel, Exception appDomainCreationException) +605 [HttpException (0x80004005): The directory ''/CRM/App_Code/'' is not allowed because the application is precompiled.] System.Web.HttpRuntime.FirstRequestInit(HttpContext context) +8946484 System.Web.HttpRuntime.EnsureFirstRequestInit(HttpContext context) +97 System.Web.HttpRuntime.ProcessRequestInternal(HttpWorkerRequest wr) +258 Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.1


Dependiendo de su caso, hay tres escenarios posibles:

vea este enlace http://www.beansoftware.com/ASP.NET-FAQ/Directory-App_Code-Not-Allowed.aspx

Básicamente, si precompilaste tu aplicación, no debería haber una carpeta App_Code. Si lo agregaste más tarde, deberías eliminarlo.

O

Puede ser de alguna manera un archivo precompilado.config ha llegado a producción. Eliminar ese archivo debería resolver el error de directorio App_Code.


Eliminar el archivo "precompiledApp.config" debería resolver su problema.


En mi caso, por error, forcé la publicación de una clase, lo que causó este problema.

La solución fue realizar una actualización en la clase ofensiva, luego publicar nuevamente con la opción "Eliminar archivos no utilizados del sitio de destino". (Que está bajo las opciones modales de publicación)