我有一个 VSTO Excel 2007 加载项,它应该从 app.config 文件中读取连接字符串,然后让用户决定要连接到哪个数据库。当我调试它时这很好用,但是当我运行部署的版本(使用 Windows Installer 完成)时,根本不会读取连接字符串。我已将所有项目的主要输出添加到设置项目中。app.config 文件位于 ExcelAddIn 项目中,但不在 Excel 标题下。管理连接字符串的类在另一个项目中。
这是我的 app.config 文件:
<?xml version="1.0"?>
<configuration>
<configSections>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=4.4.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false"/>
</configSections>
<connectionStrings>
<clear/>
<add name="MyEntities" connectionString="metadata=res://*/MyModel.csdl|res://*/MyModel.ssdl|res://*/SymModel.msl;provider=System.Data.SqlClient;provider connection string="data source=myServer;initial catalog=myDB;persist security info=True;user id=myUser;password=myPassword;multipleactiveresultsets=True;App=EntityFramework"" providerName="System.Data.EntityClient"/>
</connectionStrings>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
<parameters>
<parameter value="v11.0"/>
</parameters>
</defaultConnectionFactory>
</entityFramework>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup></configuration>
我使用以下内容获取连接字符串:
System.Configuration.Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
ConnectionStringsSection csSection = config.ConnectionStrings;
我试图将 ExcelAddin.dll.config 文件添加到安装项目的 Release 文件夹和 .proj 文件所在的文件夹中。我已将 app.config 文件的“复制到输出目录”属性设置为“始终复制”,并将构建操作属性设置为“内容”。
我的 app.config 文件是否有问题,或者为什么在我运行安装程序后它没有被拾取(连接字符串没有加载到 csSection 中)?