0
votes
4answers
60 views
Can I configure a .NET application to read settings from an SQL database?
I want my app.config (or my web.config for that matter) to read from an SQL database instead of an XML file. How can I do that?
0
votes
2answers
27 views
.NET 2.0 app on Windows Server 2003 doesn’t load a .config file
I can’t made my .NET 2.0 applications (and services) to load their appname.exe.config files on Windows Server 2003 Standard Edition SP2,
I tried to create manifest like this but …
0
votes
4answers
92 views
Application Data Folder and Company Name With Underscores
My VB.NET 2008, .NET 3.5 application is using an app.config with settings defined as User. As expected, it created the folder:
C:\Documents and Settings\<user>\Local Setting …
2
votes
3answers
94 views
How do I retrieve AppSettings from the assembly config file?
I would like to retrieve the AppSetting key from the assembly config file called: MyAssembly.dll.config. Here's a sample of the config file:
<configuration>
<appSett …
1
vote
2answers
212 views
What does ‘useLegacyV2RuntimeActivationPolicy’ do in the .NET 4 config?
While converting a project that used SlimDX, and therefore has unmanaged code, to .NET 4.0 I ran into the following error:
Mixed mode assembly is built against version 'v2.0.50 …
0
votes
3answers
76 views
App config asp.net
Let's say I have a class called AppConfig:
public static class AppConfig
{
private static XDocument config =
public static AppConfig()
{
}
}
How do I XDocumen …
0
votes
2answers
42 views
Why has my ConnectionsStringCollection more entries than my connection-Strings section in app.config?
In my C#-WinForms-application (.Net 3.5, VS2008) I read the App.Config using:
Configuration myConfig =
ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
…
0
votes
2answers
31 views
How I can use an app.config file with a comvisible class library?
I'm working on this ComVisible class library that uses a third party component.This component needs some settings to be added to the config file.Since the application that uses my …
1
vote
3answers
176 views
.NET DLL Settings and Config when there’s a Web Reference - whats going on?
My understanding is, that .NET doesn't really 'do' config files for DLLs - only the main Executable or Web App gets a config file, and all DLLs referenced by the Executable/Web App …
0
votes
3answers
144 views
Binding ASP.Net Web.Config Settings To .ASPX File <a href></a>!?
The Scenario
I have an ASP.NET web project. I want to be able to define all of the links for the site inside my web.config file so that they can be changed easily if needs be. Cur …
0
votes
1answer
12 views
Visual Studio test runner is seeking assembly configuration files in Visual Studio common directory. How do I fix this?
I have an existing Visual Studio solution with a handful of unit tests that throw one of two exceptions when executed using the Visual Studio test runner:
System.IO.FileNotFoundE …
0
votes
1answer
47 views
Access config file from a VS Sharepoint Workflow
Hi,
I want to store some setting in web.config file of the sharepoint web application or in app.config of the workflow itself. But i don't know how to access neither of these file …
0
votes
1answer
90 views
web.config and app.config confusion
I have a DLL that references a web service.
The block it has put into the app.config is (I have changed the names but you'll get the idea):
<applicationSettings>
<DL …
0
votes
3answers
80 views
How can I change what App.config gets renamed to?
I have an App.config file in my project that gets copied to NameOfExe.exe.config at build time. The users of my software will need to edit this file at times, but they may not be f …
0
votes
1answer
99 views
app.config for unit test assembly: how to make the appsettings ‘file’ attribute work?
I need to read a setting from the appsettings section (defined in app.config) in a unit test. We're using mstest in this project.
Say this is the app.config:
<configuration> …
