I have a .fsx f# script file in Visual Studio, and i want to build an exe that executes it, how should i proceed?

500 views Asked by At

I'm working with visual studio 2015. I undestood that I have to create a console application project, then I added the scripts. Now i don't understand what I have to do.

my main is just 4 lines of code

[<EntryPoint>]
let main argv = 
    printfn "%A" argv
    0

and i suppose i have to call the .fsx files in some way, but how? Maybe I have to edit the AssemblyInfo.fs file? Thanks, and sorry for my inexperience.

0

There are 0 answers