We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We already have an approved syntax for F# (https://github.com/fsharp/fslang-design/blob/master/tooling/FST-1027-fsi-references.md). We could implement that and get rid of the FAKE header in the following way:
#if FAKE_DEPENDENCIES #r "paket: storage: none" #r "paket: source https://api.nuget.org/v3/index.json" #r "paket: nuget Fake.Core.Target prerelease" #endif
or as an alternative:
#r "fake: Fake.Core.Target prerelease"
(First fake line would set NuGet-Gallery as source (if non exists) and storage:none)
fake
storage:none
#if
FAKE_DEPENDENCIES
The text was updated successfully, but these errors were encountered:
fd82226
matthid
No branches or pull requests
Description
We already have an approved syntax for F# (https://github.com/fsharp/fslang-design/blob/master/tooling/FST-1027-fsi-references.md). We could implement that and get rid of the FAKE header in the following way:
or as an alternative:
#r "fake: Fake.Core.Target prerelease"
(First
fake
line would set NuGet-Gallery as source (if non exists) andstorage:none
)#if
block around the directives.FAKE_DEPENDENCIES
at runtimeThe text was updated successfully, but these errors were encountered: