Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我最近尝试了 Code Cop 1.3.1 - 一个方法拦截器。
但是在安装 .NET Framework 4.6 时不会运行。
解决方案是使用以下运行时元素设置您的 app.config
<?xml version="1.0" encoding="utf-8"?> <configuration> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/> </startup> <runtime> <useLegacyJit enabled="1" /> </runtime> </configuration>