app.config和64位计算机

时间:2010-05-28 16:25:04

标签: .net connection-string 32bit-64bit app-config

我的应用程序在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中运行应用程序时,它工作正常。只有当我用完release文件夹时才会定义连接字符串。应用程序的.exe.config文件与.exe文件一起位于release文件夹中,并且是最新的。

2 个答案:

答案 0 :(得分:3)

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

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

答案 1 :(得分:1)

将连接字符串添加到devenv.exe.config文件。

这位于

Visual Studio 2010

$$ InstallLocation $$ \ Microsoft Visual Studio 10.0 \ Common7 \ IDE \ devenv.exe.config

Visual Studio 2008

$$ InstallLocation $$ \ Microsoft Visual Studio 9.0 \ Common7 \ IDE \ devenv.exe.config