Explain 3 types of configuration files in windows application in .NET- Application Configuration: They contain configuration settings specific to applications. These files provide a way of overriding the metadata in assemblies without having to rebuild the application.
- Machine Configuration Files:Machine Configuration allows to provide settings for all the applications on a computer. The name of machine configuration file is machine.config. The location of this file is %SystemRoot%\Microsoft.NET\Framework\\CONFIG\.
- Security configuration files: It contains information that describes the permissions and rights. The information in this files can be related to code access security system.
|