gpt4 book ai didi

.net - app.config 和 64 位机器

转载 作者:行者123 更新时间:2023-12-04 08:38:53 26 4
gpt4 key购买 nike

我有一个应用程序在 32 位系统上运行良好,但在 XP 64 位系统上运行失败。我已经将它跟踪到我的 app.config 中定义的连接字符串,因此:

  <connectionStrings>
<clear/>
<add name="IFDSConnectionString"
connectionString="Data Source=fdsdata;Initial Catalog=IFDS;
Trusted_Connection=true;Connect Timeout=0"
providerName="System.Data.SqlClient" />
</connectionStrings>

当我尝试在代码中引用它时,我发现 ConfigurationManager.ConnectionStrings 集合只包含来自 machine.config 文件的 LocalSqlServer 连接字符串,而不是我的自定义字符串。

另一个奇怪的是,当我从 Visual Studio 运行应用程序时,它运行良好。只有当我用完发布文件夹时,才会没有定义连接字符串。应用程序的 .exe.config 文件与 .exe 文件一起位于发布文件夹中,并且是最新的。

最佳答案

我最终在这里找到了解释:http://social.msdn.microsoft.com/forums/en-US/clr/thread/c25cd2c0-653d-4890-97b8-d2c9ceda2949/

简而言之,当使用应用程序的 list 文件时会发生此行为。在这种情况下,框架会查找 application_name.config,而不是 application_name.exe.config。一种解决方法是在构建应用程序后重命名配置文件。另一种方法是将 assemblyIdentity 节点添加到 list 中。在我自己的情况下,我能够简单地删除 list 文件,生活又一次美好了。

关于.net - app.config 和 64 位机器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2930740/

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