github-actions[bot] on 5.23.0
github-actions[bot] on master
Bump version to 5.23.0 (compare)
yazeedobaid on master
Fake.Core.Process: stop using o… Fixes #2600. A duplicate item i… Merge pull request #2674 from k… and 4 more (compare)
yazeedobaid on next
`5.23.0` release Merge pull request #2693 from F… (compare)
yazeedobaid on next
Fixes #2600. A duplicate item i… Merge pull request #2690 from F… (compare)
yazeedobaid on next
Fake.Core.Process: stop using o… Merge pull request #2674 from k… (compare)
I upgraded my project to use net5.0. When I run dotnet fake --version:
FAKE 5 - F# Make (5.20.4-alpha.1642+vsts.cc9c2d6e6d38fde57081cbefcd940f247425f904)
Paket.Core: 5.251.0
When I run dotnet fake build:
\build.fsx (8,5)-(8,9): Error FS0039: The namespace or module 'Fake' is not defined."
Also more errors about 'Farmer' is not defined, 'Target' is not defined, 'Path' is not defined, etc...
I'm using the SAFE Stack Template from here:
https://github.com/SAFE-Stack/SAFE-template
Is it missing some kind of assembly reference I need for 5.0? I changed my paket.dependencies to have group Build use framework "net5.0", maybe that's a mistake?
Hi,
I'm trying to pass the version parameter to DotNet.publish, like
|> DotNet.publish (fun p ->
{ p with
OutputPath = Some publishPath
MSBuildParams = { p.MSBuildParams with
Properties = [ "/p:Version" version ]
}
Configuration = DotNet.BuildConfiguration.fromString "Release" })
but I get an error.
I'm having problems with docopt
In build.cmd I have:
dotnet fake run build.fsx -t "%*"
Calling it like:
.\build.cmd Test --tier=an-dev --clientId=guid --key=<secret> --subscriptionId=guid --output
In my build.fsx I have:
let cli = """
usage: prog [options]
options:
--tier=TIER environment to build against [default: an-dev]
--config=CONFIG dotnet Debug build configuration
--artifact-resource-group-name=NAME azure resource group to use for ARM deployment
--artifact-storage-account-name=NAME azure storage account to use for ARM templates
--clientId=ID azure jenkins service principal id
--key=KEY azure jenkins service principal secret
--subscriptionId=ID azure subscription id
--tenantId=ID azure AD tenant id
--no-sass-token don't use sass token for ARM deployment
--gen-reports generate coverage report
--output print ARM template output
"""
I can't get it to work with a target and use docopt