Skip to content

Commit

Permalink
Merge branch 'master' into net8-build
Browse files Browse the repository at this point in the history
# Conflicts:
#	RELEASE_NOTES.md
#	build.fsx
#	paket.lock
  • Loading branch information
Thorium committed Sep 23, 2024
2 parents c2fdfd6 + 4d0bf7d commit 49914d4
Show file tree
Hide file tree
Showing 11 changed files with 30 additions and 35 deletions.
4 changes: 3 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
# Release Notes
## 6.1.2 - 2024-09-03
## 8.0.0-alpha - 2024-09-03
* Added .NET8.0 to package target libraries
* Some dependency updates

## 6.1.2 - 2024-09-20
* Runtime-identifier update to more recent runtimes.
* Removed .NETFrameworkAssembly attribute fix on detecting .NET assemblies.

Expand Down
2 changes: 2 additions & 0 deletions build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -809,6 +809,7 @@ runtimes
Configuration = DotNet.Release
OutputPath = Some outDir
Framework = Some "net8.0"
// DisableInternalBinLog: https://github.com/fsprojects/FAKE/issues/2722
MSBuildParams = { MSBuild.CliArguments.Create() with DisableInternalBinLog = true }}
|> dotnetSimple)
proj
Expand Down Expand Up @@ -877,6 +878,7 @@ Target.create "DotNetCreateNuGetPackage" (fun _ ->
Properties =
[ ("Version", nugetVersion)
("PackageReleaseNotes", release.Notes |> String.toLines) ]
// DisableInternalBinLog: https://github.com/fsprojects/FAKE/issues/2722
DisableInternalBinLog = true } }
|> dotnetSimple)
"Fake.sln"
Expand Down
1 change: 0 additions & 1 deletion paket.dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ group fakerunner

// Testing
nuget Expecto
nuget Expecto.TestResults
nuget Expecto.FsCheck
nuget YoloDev.Expecto.TestSdk
nuget Microsoft.TestPlatform.TestHost
Expand Down
43 changes: 20 additions & 23 deletions paket.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/app/Fake.Core.CommandLineParsing/docopt.fs/Docopt/Ast.fs
Original file line number Diff line number Diff line change
Expand Up @@ -93,19 +93,19 @@ type UsageAstBuilder =

member x.UsageTag =
match x with
| UsageAstBuilder.Eps _ -> Tag.Eps
| UsageAstBuilder.Eps -> Tag.Eps
| UsageAstBuilder.Ano _ -> Tag.Ano
| UsageAstBuilder.Sop _ -> Tag.Sop
| UsageAstBuilder.Lop _ -> Tag.Lop
| UsageAstBuilder.Sqb _ -> Tag.Sqb
| UsageAstBuilder.Req _ -> Tag.Req
| UsageAstBuilder.Arg _ -> Tag.Arg
| UsageAstBuilder.XorEmpty _ -> Tag.Xor
| UsageAstBuilder.XorEmpty -> Tag.Xor
| UsageAstBuilder.Xor _ -> Tag.Xor
| UsageAstBuilder.Seq _ -> Tag.Seq
| UsageAstBuilder.Cmd _ -> Tag.Cmd
| UsageAstBuilder.Ell _ -> Tag.Ell
| UsageAstBuilder.Sdh _ -> Tag.Sdh
| UsageAstBuilder.Sdh -> Tag.Sdh

and UsageAstCell =
{ mutable Content: UsageAstBuilder option }
Expand Down
4 changes: 2 additions & 2 deletions src/app/Fake.DotNet.AssemblyInfoFile/AssemblyInfoFile.fs
Original file line number Diff line number Diff line change
Expand Up @@ -360,15 +360,15 @@ module AssemblyInfoFile =
|> Seq.tryFind (fun (attr: Attribute) -> attr.Name = "AssemblyVersion")
with
| Some attr -> attr.Value
| None _ -> "\"" + BuildServer.buildVersion + "\""
| None -> "\"" + BuildServer.buildVersion + "\""

let private getAssemblyInformationalVersion attributes =
match
attributes
|> Seq.tryFind (fun (attr: Attribute) -> attr.Name = "AssemblyInformationalVersion")
with
| Some attr -> attr.Value
| None _ -> getAssemblyVersionInfo attributes
| None -> getAssemblyVersionInfo attributes

let private getSortedAndNumberedAttributes (attrs: seq<Attribute>) =
attrs
Expand Down
1 change: 0 additions & 1 deletion src/test/Fake.Core.CommandLine.UnitTests/paket.references
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,4 @@ Microsoft.TestPlatform.TestHost
FSharp.Core
NETStandard.Library
Expecto
Expecto.TestResults
FParsec
1 change: 0 additions & 1 deletion src/test/Fake.Core.IntegrationTests/paket.references
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@ Microsoft.TestPlatform.TestHost
FSharp.Core
NETStandard.Library
Expecto
Expecto.TestResults
FParsec
Newtonsoft.Json
1 change: 0 additions & 1 deletion src/test/Fake.Core.UnitTests/paket.references
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@ Paket.Core
FSharp.Core
NETStandard.Library
Expecto
Expecto.TestResults
Expecto.FsCheck
FsCheck
1 change: 0 additions & 1 deletion src/test/Fake.DotNet.Cli.IntegrationTests/paket.references
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,3 @@ Microsoft.TestPlatform.TestHost
FSharp.Core
NETStandard.Library
Expecto
Expecto.TestResults
1 change: 0 additions & 1 deletion src/test/Fake.ExpectoSupport/paket.references
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,5 @@ group fakerunner

FSharp.Core
Expecto
Expecto.TestResults
Expecto.FsCheck
FsCheck

0 comments on commit 49914d4

Please sign in to comment.