Aaron M
Aaron M

Reputation: 326

Package References in F#

I am wondering if there is a way to bundle group of certain packages to load in to a new project outside of the PM(package manager). Like a predefined script?

thanks

Upvotes: 2

Views: 364

Answers (1)

Reed Copsey
Reed Copsey

Reputation: 564413

This is commonly managed by Paket. It can add nuget package references to projects (like NuGet), but also has the option of generating include scripts for use in .fsx files.

For details, see the Paket FAQ.

Upvotes: 1

Related Questions