VS2012 Breakpoints are not getting hit

后端 未结 24 1648
小鲜肉
小鲜肉 2020-12-13 12:44

I have a class that looks like this:

public class MyService
{
    private MyService(){}
    public static string GetStuff()
    {
        var stuffDid = new          


        
24条回答
  •  感情败类
    2020-12-13 13:36

    It turns out this was related to Code Coverage being on.

    Turning it off fixed the issue.

    You can find out how to disable code coverage by following below link

    Disable code coverage

提交回复
热议问题