创建 Windows 服务时如何使用 App.Config 文件中 appSettings 的值

问题描述 投票:0回答:4

我正在尝试创建一个 Windows Server。我有一些 C# 逻辑

        string urlToPing = ConfigurationSettings.AppSettings["UrlToPing"].ToString();
        Stream data = client.OpenRead(urlToPing);

我需要读书

这是我的App.Config

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
  <appSettings>
    <add key="UrlToPing" value="http://mysite.com"/>
  </appSettings>

</configuration>

我是 Windows 服务新手,我的问题:

  • 当我发布到服务文件夹或创建构建时,我无法 查看App.Config文件
    • Visual Studio 警告 ConfigurationSettings.AppSettings 已过时(我应该使用什么代替?)
c# windows-services
4个回答
61
投票

对于我的第二个问题,我找到了解决方案:

  1. 将对 System.Configuration 的引用添加到您的代码文件中。

    using System.Configuration;

  2. 现在可以正确引用设置...

    ConfigurationManager.AppSettings["UrlToPing"].ToString();


4
投票

对于第一个问题,当您构建可执行项目(Windows 服务、控制台应用程序等)时,它会将 app.config 重命名为“YourApplication”.exe.config,其中“YourApplication”是启动程序集的名称。然后它会将文件复制到您的输出文件夹。


0
投票

将 System.Configuration 添加到引用中


0
投票
  1. 添加“使用 System.Configuration;”
  2. 大小写重要
  3. 另外注意这一点;您必须在“configurations”标签之后使用“appSettings”标签。enter image description here
© www.soinside.com 2019 - 2024. All rights reserved.