15 lines
484 B
15 lines
484 B
<?xml version="1.0" encoding="utf-8"?><configuration> |
|
<configSections> |
|
<sectionGroup name="NUnit"> |
|
<section name="TestRunner" type="System.Configuration.NameValueSectionHandler" /> |
|
</sectionGroup> |
|
</configSections><startup> |
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> |
|
</startup> |
|
<NUnit> |
|
<TestRunner> |
|
<!-- Valid values are STA,MTA. Others ignored. --> |
|
<add key="ApartmentState" value="STA" /> |
|
</TestRunner> |
|
</NUnit> |
|
</configuration>
|
|
|