Closed
Description
dotnet/diagnostics#2192 (comment)
e.g. this code:
using System;
class Program
{
static void Main() => throw new Exception("foo");
}
would yield:
Unhandled exception. System.Exception: foo
at Program.Main()
instead of what we get with non-singlefile execution:
Unhandled exception. System.Exception: foo
at Program.Main() in /home/am11/projects/app1/Program.cs:line 4
cc @mikem8361