Last change
on this file since 2297 was
1792,
checked in by mstoeger, 15 years ago
|
Added App.config to NUnit project to set the required ApartmentState (SaveFileDialogs didn't work anymore with ReSharper >= 4.0 because they changed the default ApartmentState) (#498)
|
File size:
370 bytes
|
Rev | Line | |
---|
[1792] | 1 | <?xml version="1.0" encoding="utf-8" ?>
|
---|
| 2 | <configuration>
|
---|
| 3 | <configSections>
|
---|
| 4 | <sectionGroup name="NUnit">
|
---|
| 5 | <section name="TestRunner" type="System.Configuration.NameValueSectionHandler"/>
|
---|
| 6 | </sectionGroup>
|
---|
| 7 | </configSections>
|
---|
| 8 |
|
---|
| 9 | <NUnit>
|
---|
| 10 | <TestRunner>
|
---|
| 11 | <add key="ApartmentState" value="STA" />
|
---|
| 12 | </TestRunner>
|
---|
| 13 | </NUnit>
|
---|
| 14 | </configuration> |
---|
Note: See
TracBrowser
for help on using the repository browser.