Is there any way to just install a package in my system and have any .fs file be able to reference it?
Is it possible to use F# Packages without following the Project Structure?
All FSharp uses of external packages I have seen either make use of NuGet (for proper big projects) or reference a downloaded dll (for F# .fsx scripts).
I'm looking to make use of the compiler and generate an executable.
My use case is the following:
I have a very simple command line script that does not justify having a complex project structure with a bunch of project, paket and config files. All I really need is to compile a single FSharp file and produce an .exe.
Now, this script requires doing some HTTP requests, retrieving a JSON response, and transform that data - I believe FSharp.Data is the perfect tool for the job but I have been unable to find out how integrate it with my problem.