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.
是否可以在具有用于编译 php 代码的 phalanger 的 .NET 服务器上进行手动测试的代码覆盖?
Phalanger 将代码编译成 .NET 程序集。如果您指定调试选项,也会生成 PDB 文件。这就是运行代码覆盖率所需的全部内容。
因此,请确保您的 web.config 包含以下内容
<phpNet><compiler><set name="Debug" value="true" />
请注意,这将生成 DLL 文件的调试版本。目前 Phalanger 没有选择使用 PDB 文件构建 Release。