Doing fsc --debug:full doesnt work if fsc is built for .net core.
the target framework doesnt matter (netcoreapp1.1 or net451 is the same result).
zero pdb, zero warning, zero errors. it's just not created. Maybe a warning/error?
As a note from dotnet/netcorecli-fsc#89 bug report with repro, csc netcore support full (/cc @DaveEmmerson)
Repro, using .net core sdk 1.0 rtm because is easier.
dotnet new console -lang f#
change fsproj adding `<DebugType>full</DebugType>`
dotnet restore
dotnet build -v n
the -v n show fsc args :D
Expected:
the full pdb is output dir
Result:
no pdb, no errors, no warning