6

我有一个 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=&quot;data source=myServer;initial catalog=myDB;persist security info=True;user id=myUser;password=myPassword;multipleactiveresultsets=True;App=EntityFramework&quot;" 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 中)?

4

3 回答 3

7

在“安装程序”下的注册表项中file:///添加([TARGETDIR]ExcelAddIn.vsto|vstolocal例如:) 。file:///[TARGETDIR]ExcelAddIn.vsto|vstolocal

于 2015-04-08T16:51:34.190 回答
0

您需要将 app.Config 文件添加到您的安装项目中,而不是从实际项目中添加 ExcelAddIn 项目的 Release\Debug 文件夹。

当您构建 ExcelAddIn 项目时,它会将 App.config 文件保留到 Release\Debug 文件夹,在那里选择文件表单并将其包含到安装项目的依赖文件夹中。

于 2013-09-04T13:00:35.533 回答
0

它似乎与 ClickOnce 一起使用。所以我仍然不知道安装项目和使用 Windows Installer 的问题是什么,但至少我可以部署它。

于 2013-09-19T11:40:27.603 回答