When we open NUnit application it loads the assemblies that are loaded in it previously. Where does nunit store those recently loaded assemblies?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The most recent version of NUnit (2.5.0.9112) stores user settings in an xml document.
File location varies by user, like so:
In the settings file, you’ll see a tag for each recent file. For example:
In the above example, the assembly identified in the setting with name “RecentProjects.File1” would be loaded by default.
UPDATE:
Since the OP indicated they are using NUnit 2.4.8 and this question is still open, I figured I should update my answer.
For version 2.4.8, the above answer is almost identical except the Setting name value would need to be altered as follows:
Notice that the only difference is the addition of the text “V2”. In this example, the assembly identified in the setting with name “RecentProjects.V2.File1” would be loaded by default.
Hope this answers your question.
You can find the source for these projects here.