VSTO Debug版很好,安装版本没有读取app.config

时间:2013-09-03 07:50:21

标签: visual-studio-2010 vsto excel-addins

我有一个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文件的'Copy to Output Directory'属性设置为'Copy always',将Build Action属性设置为'Content'。

我的app.config文件有什么问题吗,或者为什么在我运行安装程序后它没有被拾取(连接字符串没有加载到csSection中)?

3 个答案:

答案 0 :(得分:6)

file:///添加到[TARGETDIR]ExcelAddIn.vsto|vstolocal(例如:file:///[TARGETDIR]ExcelAddIn.vsto|vstolocal),位于&#34; installer&#34;下的注册表项。

答案 1 :(得分:0)

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

当您构建ExcelAddIn项目时,它会将App.config文件保留到Release \ Debug文件夹,然后在那里找到文件格式并将其包含在Setup Project的dependicies文件夹中。

答案 2 :(得分:0)

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