Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to specify more than one app config file in one nunit project file?

Tags:

nunit

I have a collection of unit test that I need to all run from one command line call. One of the assemblies uses a different config file than the rest of the assemblies. Is there a way to specify more than one app config file in one nunit project file?

like image 947
wusher Avatar asked Mar 16 '09 19:03

wusher


People also ask

What is app config file in c#?

App. Config is an XML file that is used as a configuration file for your application. In other words, you store inside it any setting that you may want to change without having to change code (and recompiling). It is often used to store connection strings.


1 Answers

Not in a project file, but you can specify a config file per assembly (e.g. TestAssembly1.dll.config)

like image 78
koltun Avatar answered Nov 22 '22 14:11

koltun