ConfigurationManager 不可用

ConfigurationManager is not available

我正在尝试在我的程序中添加 ConfigurationMangager。我已经尝试添加 System.ConfigurationSystem.Configuration.Install 参考,但没有任何效果。还有其他方法可以解决这个问题吗?

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Data.SqlClient;
using System.Configuration;

namespace Gmos.Halbtax.Models
{
    static class Program
    {
        public static void connectDB()
        {
            string connString = ConfigurationManager.AppSettings["ConnString"].ToString();
            SqlConnection conn = new SqlConnection(connString);          
        }
    }
}

确定目标框架是 NET framework 4 并且 select 用于 System.Configuration 的版本是 v4.0.0.0

通过单击项目上的“添加引用”在您的项目中添加System.Configuration

To check go to your Project Properties -> Application -> Target framework

希望对您有所帮助。

如果引用未显示:您是否使用 客户端配置文件 版本的 .Net Framework 4?如果是这样下载整个框架,它应该是固定的。 如果您已经在使用完整版,请尝试 运行 修复...在极少数情况下会发生此行为