gpt4 book ai didi

c# - IIS 编译错误 -2146232576 AspNetInitializationExceptionModule

转载 作者:IT王子 更新时间:2023-10-29 04:23:00 25 4
gpt4 key购买 nike

我有一个相当简单的 C# WebAPI2 项目,它在本地运行,但在发布到远程计算机(Windows Server 2012 R2 Standard)上的 IIS 后,网页显示以下内容(在将 customErrors 设置为“关闭”后):

Server Error in '/' Application. Compilation Error Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately. Compiler Error Message: The compiler failed with error code -2146232576.

如果我捕获 detailed compiler output并在 IIS 服务器上运行它,我得到一个 smartscreen error message说:

This app can't run on your PC. To find a version for your PC, check with the software publisher.

我猜这与编译器版本有关,但自上次发布以来没有任何变化。

有什么想法吗?

最佳答案

升级一些 NuGet 后我遇到了这个问题,并通过以下步骤解决了。

第 1 步:NuGet Package Console 中删除这些 NuGet 包

PM> Uninstall-package Microsoft.CodeDom.Providers.DotNetCompilerPlatform
PM> Uninstall-package Microsoft.Net.Compilers

第 2 步: 添加这些 system.codedom关闭前的行</system.data>Web.config 中标记

    <system.codedom>
<compilers>
<compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:6 /nowarn:1659;1699;1701"></compiler>
<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:14 /nowarn:41008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+"></compiler>
</compilers>
</system.codedom>

PS:一段时间后,我们删除了<system.codedom>完全,用于修复其他错误。

关于c# - IIS 编译错误 -2146232576 AspNetInitializationExceptionModule,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43892851/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com