Steve
Steve

Reputation: 12004

VS 2008 and F# Feb CTP - Can't debug

I have downloaded the VS2008 integrated shell, and the F# Feb CTP and I have the F# environment working just fine. The problem comes when I try to debug. Nothing happens at all. The output window says

------ Build started: Project: ConsoleApplication1, Configuration: Debug Any CPU ------ ========== Build: 1 succeeded or up-to-date, 0 failed, 0 skipped ==========

and none of my breakpoints are hit. My "program" is as simple as can be

#light

open System
printfn "Hello World"
Console.ReadKey(true)

with breakpoints on the printfn and Console lines. The things I've read seem to suggest that debugging would work with this setup, and there is a debugger folder under common7/packages with files in it. Thanks for any help.

EDIT: I'm on Win7 64 bit

Upvotes: 1

Views: 163

Answers (1)

Brian
Brian

Reputation: 118855

I am not sure why the 64-bit debugging is not working, but if you switch to an 'x86' configuration instead of 'x64' or 'AnyCPU' apparently it works for you, as per comments attached to question. :)

Upvotes: 2

Related Questions