我想让Pex在我的项目中使用linq。我得到了关于我需要做什么的解释:
In order for Pex to support Linq, make sure you add a reference to Microsoft.Pex.Linq.dll and add the [assembly: PexLinqPackage] attribute to the test project.
我添加了参考。但我从来没有在项目中添加像 [assembly:PexLinqPackage] 这样的东西。这是怎么做到的?
答案 0 :(得分:3)
选择测试项目中的任何文件(AssemblyInfo.cs
都可以。)并为其添加[assembly: PexLinqPackage]
行。
您可以绝对使用任何文件来添加程序集级属性,但AssemblyInfo.cs
似乎是最佳选择,因为它已包含多个程序集级属性。