-
Notifications
You must be signed in to change notification settings - Fork 587
New issue
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
Release 5.14.0 #2318
Release 5.14.0 #2318
Conversation
…ur suport) Fix a unit test failing locally
Fix a typo in IlMerge.fs
Currently test fails with:
This is resolved with fsprojects/Paket#3593 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
some small details to fix
src/app/Fake.DotNet.Cli/DotNet.fs
Outdated
@@ -441,7 +449,7 @@ module DotNet = | |||
let versionParamValue = | |||
match param.Version with | |||
| Latest -> "latest" | |||
| Lkg -> "lkg" | |||
| Lkg -> "coherent" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe we should add a new case instead of changing the existing one
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Making a breaking change instead... (Just like the sdk guys did)
@@ -154,11 +154,31 @@ type Arguments = | |||
CmdLineParsing.toProcessStartInfo x.Args | |||
|
|||
module Arguments = | |||
let toWindowsCommandLine (a:Arguments) = a.ToWindowsCommandLine | |||
let toLinuxShellCommandLine (a:Arguments) = a.ToLinuxShellCommandLine | |||
let toStartInfo (a:Arguments) = a.ToStartInfo |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we probably should add some comments here.
|
||
Arguments.Empty |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We probably should add some docs around this new feature.
src/app/Fake.DotNet.Cli/DotNet.fs
Outdated
if Environment.isUnix then | ||
let args = sprintf "%s %s" installScript (buildDotNetCliInstallArgs param) | ||
let args = installArgs |> Arguments.withPrefix [ installScript ] | ||
//let args = sprintf "%s %s" installScript (buildDotNetCliInstallArgs param) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
comment can be removed
src/app/Fake.Runtime/FakeRuntime.fs
Outdated
|> Seq.groupBy (function | ||
| DependencyFile.Assembly ass -> ass.IsReferenceAssembly, System.Reflection.AssemblyName(ass.Info.FullName).Name | ||
| DependencyFile.Library lib -> false, lib.File) | ||
|> Seq.map (fun (_, group) -> group |> Seq.maxBy(function |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
space after maxBy
NuGet.feedUrl
toNuGet.galleryV1
and marked it as obsolete. AddedgalleryV2
andgalleryV3
- Using NuGet.feedUrl fails #2323@@
and</>
as well asPath.combineTrimEnd
andPath.combine
- Consider explaining the difference between path concatenation operators @@ and </> #2329