http://bugzilla.novell.com/show_bug.cgi?id=571453

http://bugzilla.novell.com/show_bug.cgi?id=571453#c0


           Summary: Debugger not breaking when breakpoint is set on 1st
                    line of app
    Classification: Mono
           Product: Mono: Tools
           Version: unspecified
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Normal
          Priority: P5 - None
         Component: Visual Studio Integration
        AssignedTo: [email protected]
        ReportedBy: [email protected]
         QAContact: [email protected]
          Found By: Product Management
           Blocker: ---


Create a new console application.  Use the following source for Program.cs:

using System;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("First Line");
            Console.WriteLine("Second Line");
        }
    }
}

Set a breakpoint on the "First Line" line.  Start the application with "Debug
remotely on Mono".  The program will execute without breaking.

Set a breakpoint on the "Second Line" line.  Start the application with "Debug
remotely on Mono".  The program will break on "Second Line" as expected.

-- 
Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
_______________________________________________
mono-bugs maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-bugs

Reply via email to