Skip to content

Commit c094760

Browse files
committed
bump to fake 5 because latest 4.x changes System.Console.OutputEncoding in a way that breaks all .NET applications writing to console output afterwards
1 parent fc5c11f commit c094760

18 files changed

+34
-19
lines changed

.paket/Paket.Restore.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
<Target Name="PaketRestore" BeforeTargets="_GenerateProjectRestoreGraphPerFramework;_GenerateRestoreGraphWalkPerFramework;CollectPackageReferences" >
1616

17-
<Exec Command='$(PaketCommand) restore --project "$(MSBuildProjectFullPath)" ' />
17+
<Exec Command='$(PaketCommand) restore --project "$(MSBuildProjectFullPath)" --target-framework $(TargetFramework)' ContinueOnError="false" />
1818

1919
<PropertyGroup>
2020
<PaketReferencesFilePath>$(MSBuildProjectDirectory)/obj/$(MSBuildProjectFile).references</PaketReferencesFilePath>

build/scripts/Building.fsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
#I @"../../packages/build/FSharp.Data/lib/net40"
33
#r @"FakeLib.dll"
44
#r @"FSharp.Data.dll"
5+
#nowarn "0044" //TODO sort out FAKE 5
56

67
#load @"Paths.fsx"
78
#load @"Tooling.fsx"

build/scripts/Commandline.fsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
#I @"../../packages/build/FAKE/tools"
22
#r @"FakeLib.dll"
3+
#nowarn "0044" //TODO sort out FAKE 5
34

45
open System
56
open Fake
67

7-
88
//this is ugly but a direct port of what used to be duplicated in our DOS and bash scripts
99

1010
let private usage = """

build/scripts/Documentation.fsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#I @"../../packages/build/FAKE/tools"
22
#r @"FakeLib.dll"
3+
#nowarn "0044" //TODO sort out FAKE 5
34

45
#load @"Paths.fsx"
56

build/scripts/Profiling.fsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#r "../../packages/build/Newtonsoft.Json/lib/net45/Newtonsoft.Json.dll"
66
#r @"FakeLib.dll"
77
#r @"System.Xml.Linq.dll"
8+
#nowarn "0044" //TODO sort out FAKE 5
89

910
#load @"Projects.fsx"
1011
#load @"Paths.fsx"

build/scripts/Releasing.fsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#I @"../../packages/build/FAKE/tools"
22
#r @"FakeLib.dll"
3+
#nowarn "0044" //TODO sort out FAKE 5
34

45
#load @"Projects.fsx"
56
#load @"Paths.fsx"

build/scripts/Signing.fsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#I @"../../packages/build/FAKE/tools"
22
#r @"FakeLib.dll"
33
#load @"Paths.fsx"
4+
#nowarn "0044" //TODO sort out FAKE 5
45

56
open System
67
open Fake

build/scripts/Targets.fsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#load @"Benchmarking.fsx"
1212
#load @"Profiling.fsx"
1313
#load @"XmlDocPatcher.fsx"
14+
#nowarn "0044" //TODO sort out FAKE 5
1415

1516
open System
1617
open Fake

build/scripts/Tooling.fsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
#I @"../../packages/build/FAKE/tools"
22
#r @"FakeLib.dll"
33
#r @"System.IO.Compression.FileSystem.dll"
4+
#nowarn "0044" //TODO sort out FAKE 5
5+
46

57
open System
68
open System.IO

build/scripts/Versioning.fsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#r @"FakeLib.dll"
44
#r @"FSharp.Data.dll"
55
#r @"System.Xml.Linq.dll"
6+
#nowarn "0044" //TODO sort out FAKE 5
67

78
#load @"Projects.fsx"
89
#load @"Paths.fsx"

0 commit comments

Comments
 (0)