以前書いたテストの自動化でテストのデバッグも出来ていたんですが.NET4.0のプロジェクトは何故かデバッグが出来ない。
どうやらnunit.exe.configをいじると直るらしい。
configの編集
<startup useLegacyV2RuntimeActivationPolicy="true"> <!-- Comment out the next line to force use of .NET 4.0 --> <supportedRuntime version="v2.0.50727" /> <supportedRuntime version="v4.0.30319" /> </startup>
を
<startup useLegacyV2RuntimeActivationPolicy="true"> <!-- Comment out the next line to force use of .NET 4.0 --> <!-- <supportedRuntime version="v2.0.50727" /> --> <supportedRuntime version="v4.0.30319" /> </startup>
こうするだけ。
簡単簡単。