Skip to content

Commit 22f2d97

Browse files
committed
try to resolve from default assembly-context && release into the correct repository :/ && fix some weirdness with TypeExtensions
1 parent 0277473 commit 22f2d97

File tree

5 files changed

+307
-1026
lines changed

5 files changed

+307
-1026
lines changed

RELEASE_NOTES.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
#### 5.0.0-alpha016 - 30.08.2017
1+
#### 5.0.0-alpha017 - 23.09.2017
2+
* BUGFIX: try to fallback to load framework assemblies from the default AssemblyLoadContext.
3+
4+
#### 5.0.0-alpha016 - 23.09.2017
25
* BREAKING-CHANGE: Renew AssemblyInfo API - https://github.com/fsharp/FAKE/pull/1619
36
* ENHANCEMENT: Add XML to FakeLib - https://github.com/fsharp/FAKE/pull/1641
47
* ENHANCEMENT: Move Paket.Paket() over to use flag arguments - https://github.com/fsharp/FAKE/pull/1627

build.fsx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ let projectDescription = "FAKE - F# Make - is a build automation tool for .NET.
4444
let authors = ["Steffen Forkmann"; "Mauricio Scheffer"; "Colin Bull"; "Matthias Dittrich"]
4545
let gitRaw = Environment.environVarOrDefault "gitRaw" "https://raw.github.com/fsharp"
4646

47-
let gitOwner = "fsprojects"
47+
let gitOwner = "fsharp"
4848
let gitHome = "https://github.com/" + gitOwner
4949

5050
// The name of the project on GitHub
51-
let gitName = "Paket"
51+
let gitName = "FAKE"
5252

5353
let release = ReleaseNotes.LoadReleaseNotes "RELEASE_NOTES.md"
5454

@@ -883,14 +883,6 @@ Target.Create "ReleaseDocs" (fun _ ->
883883
open Fake.Api
884884

885885
Target.Create "FastRelease" (fun _ ->
886-
Git.Staging.StageAll ""
887-
Git.Commit.Commit "" (sprintf "Bump version to %s" release.NugetVersion)
888-
let branch = Git.Information.getBranchName ""
889-
Git.Branches.pushBranch "" "origin" branch
890-
891-
Git.Branches.tag "" release.NugetVersion
892-
Git.Branches.pushTag "" "origin" release.NugetVersion
893-
894886
let token =
895887
match Environment.environVarOrDefault "github_token" "" with
896888
| s when not (System.String.IsNullOrWhiteSpace s) -> s
@@ -908,6 +900,14 @@ Target.Create "FastRelease" (fun _ ->
908900
draftWithFiles
909901
|> GitHub.releaseDraft
910902
|> Async.RunSynchronously
903+
904+
Git.Staging.StageAll ""
905+
Git.Commit.Commit "" (sprintf "Bump version to %s" release.NugetVersion)
906+
let branch = Git.Information.getBranchName ""
907+
Git.Branches.pushBranch "" "origin" branch
908+
909+
Git.Branches.tag "" release.NugetVersion
910+
Git.Branches.pushTag "" "origin" release.NugetVersion
911911
)
912912

913913
open System

paket.dependencies

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,8 @@ group NetcoreBuild
9696
nuget Fake.Tools.Git prerelease
9797
nuget Mono.Cecil prerelease
9898
nuget Octokit
99+
// Something strange is going on.
100+
nuget System.Reflection.TypeExtensions 4.3.0
99101

100102
group netcore
101103
//source https://ci.appveyor.com/nuget/paket

0 commit comments

Comments
 (0)