14

我正在尝试在 x64 项目上运行 Intellitest(为此我什至尝试创建简单的 64x 项目)

public class Program
{
    public static void Main(string[] args)
    {
        if(args == null)
            throw new Exception("test");
    }
}

但由于某种原因,我在智能输出中得到的只是

saving all files
building project
Launching exploration
starting...
preparing monitored process for 'C:\Users\User\Documents\Visual Studio 2012\Projects\Unitest\ConsoleApplication9\bin\Debug\ConsoleApplication9.exe'
failed to prepare process for assembly 'C:\Users\User\Documents\Visual Studio 2012\Projects\Unitest\ConsoleApplication9\bin\Debug\ConsoleApplication9.exe'
monitored process exited with error while loading assembly (-1006 - 0xfffffc12)
finished
4

1 回答 1

3

感谢您的反馈。这是设计使然。目前 x64 配置不支持 IntelliTest。

于 2015-08-24T06:11:43.463 回答