在.Net框架中,ConfigurationManager是一个内置对象,提供对配置文件的访问。
ConfigurationManager.AppSettings - 如何修改和保存?
这听起来可能太琐碎了,我按照文章中的建议做了同样的事情,但它并没有按预期工作。希望有人能指出我正确的方向。 我想保存
Visual Studio 不会在配置管理器中为我提供 64 位平台选项..?
我目前正在尝试为 64 位计算机构建一个项目,但配置管理器没有列出 64 位作为选项。它给了我Win32,但没有x64(在“平台”下)。我正在使用视觉...
我的项目中合并了许多项目。 我收到的错误消息是这样的: 正在构建的项目“MSIL”的处理器架构与
是新人,但已经使用该网站很长时间了。我正在尝试创建一个 powershell 脚本,以便我可以自动执行 google chrome 更新,但我无法在右侧创建应用程序
在 Visual Code 中创建项目时如何设置和读取 appsettings?
我开始使用 Visual Code 而不是 VS - 不幸的是,我不知道如何设置 appSettings.config 并使用配置管理器引用键值。 这一行抛出一个 Nullreference
从 Global.asax 读取 web.config 文件
我在 Web API 项目中启动了代码,尝试从默认发布在 bin 目录中的 web.config 文件中读取值。因为应用程序初始化点...
如何使用另一个应用程序修改AppData文件夹中的user.config?
我想从安装程序或不属于应用程序一部分的测试中编辑 user.config 文件,并使用我要编辑的配置。因此我需要 user.config 的路径。 user.config 的路径是...
我正在使用 .NET 6 构建一个控制台应用程序。 为了加载设置,我使用选项模式,并且我想创建 json 配置文件,其中包含一组对象,其中一个对象有变化
我正在尝试完成这个异常处理程序: if (ConfigurationManager.ConnectionStrings["ConnectionString"]==null) { 字符串路径ActiveConfigFile = ...? 抛出新的 ConfigurationErrorsExcep...
如何在最小 api net7 中记录应用程序见解并读取公共类库中的配置
我是最小 API net7 的新手。我想在出现任何异常时记录应用程序见解,并从另一个公共库中的 app.settings.json 读取配置。这里我使用
我正在使用 Visual Studio 2013 和 .NET Framework 4.5。 我已将 System.Configuration 作为参考包含在项目中。 我还在类中包含了一个 using 语句,如下所示: 使用...
如何从 VB.NET Windows 应用程序修改 app.config 文件中的 ConnectionString?
我想更改 app.config 文件中编写的应用程序的连接字符串。我喜欢直接从我的应用程序更改连接字符串。 我的 app.config 如下所示: 我想更改写在 app.config 文件中的应用程序的连接字符串。我喜欢直接从我的应用程序更改连接字符串。 我的 app.config 看起来像: <?xml version="1.0" encoding="utf-8"?> <configuration> <configSections> ... <connectionStrings> <add name="ApplicationName.My.MySettings.ConnectionS" connectionString="Data Source=xxx;Initial Catalog=xxx;User ID=xxx;Password=xxx" providerName="System.Data.SqlClient" /> </connectionStrings> <appSettings> <add key="Test" value="/" /> </appSettings> </configuration> 我可以使用以下代码在 appSettings 中进行更改: Dim config As System.Configuration.Configuration = System.Configuration.ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None) config.AppSettings.Settings("Test").Value = "New value" 但是在安装应用程序时进行调试时我无法在 connectionStrings 中进行更改: Dim config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None) Dim connectionStringsSection = DirectCast(config.GetSection("connectionStrings"), ConnectionStringsSection) connectionStringsSection.ConnectionStrings("ApplicationName.My.MySettings.ConnectionS").ConnectionString = "New connection string" config.Save() ConfigurationManager.RefreshSection("connectionStrings") 要在代码中更改它,请尝试以下操作; Dim con1 = ConfigurationManager.ConnectionStrings("connection1") Dim con2 = ConfigurationManager.ConnectionStrings("connection2") “connection1”和“connection2”是 app.config 中连接字符串的名称。 Dim c As System.Configuration.Configuration = ConfigurationManager.OpenExeConfiguration(System.Reflection.Assembly.GetExecutingAssembly().Location) Dim section As ConnectionStringsSection = DirectCast(c.GetSection("connectionStrings"), ConnectionStringsSection) section.ConnectionStrings("Services.My.MySettings.hassanConnectionString").ConnectionString = createCnxString() c.Save() Private Function createCnxString() As String Dim builder As New System.Data.SqlClient.SqlConnectionStringBuilder builder("Data Source") = datasourceTxt.Text builder("Integrated Security") = True builder("Initial Catalog") = "XXXX" builder("User ID") = usernameTxt.Text builder("Password") = passwordTxt.Text Return builder.ConnectionString End Function
您如何获得新配置以在 Visual Studio 中的断点处停止?
我正在使用 VS 2019。 调试和发布构建按预期工作。 我添加了 4 个其他配置,以便我们团队中的开发人员能够在我们所有的底层环境之间快速切换。 我是我们...
证书验证失败[无法获得CN=puppetmaster.example.com的本地签发人证书] 。
当试图从puppet代理节点运行以下命令时:puppet代理--测试--verbose 提示以下错误 Error: certificate verify failed [ unable to get local issuer ...
我在应用程序调试启动时得到以下错误。System.TypeInitializationException: 'The type initializer for 'System.Data.Entity.Internal.AppConfig' threw an exception.' 'System.Data.Entity.Internal.AppConfig'的类型初始化器引发异常。...
以下命令将引发错误:puppetserver ca list运行操作'list'时发生致命错误错误:无法连接到https:// puppet:8140 / puppet-ca / v1 / certificate_statuses / any_key根...
Azure App Service应用程序设置无法通过ConfigurationManager使用
我正在使用Azure App Service。我试图在“应用程序设置->应用程序设置和连接字符串”部分中添加几个参数,以覆盖来自web.config的值,我无法访问...
Azure应用程序配置或Azure KeyVault-在更改后的值上触发新构建
我正在使用Azure应用配置和Azure密钥保管库在Azure DevOps构建期间获取我的应用程序的值。当我在Azure应用配置中更改任何值和/或...
我有一个基于前端反应和.net MVC后端的网站,我想在ConfigurationManager中获取AppSettings方法,但是VS告诉我,没有ConfigurationManager ...
我需要通过C#以编程方式操作站点的web.config的帮助。该站点托管一个Silverlight 5应用程序,该应用程序通过WCF RIA与服务器运行时进行通信...