@@ -6,8 +6,6 @@ open Fake.DotNet
66open Fake.Core .TargetOperators
77open Fake.Tools
88
9- System.Environment.CurrentDirectory <- ( Path.combine __ SOURCE_ DIRECTORY__ " .." )
10-
119let project = " FsAutoComplete"
1210let changeLogFile = " CHANGELOG.md"
1311let mutable changelogs = Changelog.load changeLogFile
@@ -101,16 +99,6 @@ let init args =
10199 ( fun p -> { p with Configuration = DotNet.BuildConfiguration.fromString configuration })
102100 " FsAutoComplete.sln" )
103101
104- Target.create " ReplaceFsLibLogNamespaces"
105- <| fun _ ->
106- let replacements =
107- [ " FsLibLog\\ n" , " FsAutoComplete.Logging\n "
108- " FsLibLog\\ ." , " FsAutoComplete.Logging" ]
109-
110- replacements
111- |> List.iter ( fun ( ``match`` , replace ) ->
112- (!! " paket-files/TheAngryByrd/FsLibLog/**/FsLibLog*.fs" )
113- |> Shell.regexReplaceInFilesWithEncoding `` match `` replace System.Text.Encoding.UTF8)
114102
115103 Target.create " Format" ( fun _ ->
116104 let result =
@@ -210,13 +198,12 @@ let init args =
210198 " PromoteUnreleasedToVersion" ==> " CreateVersionTag" ==> " Promote"
211199 |> ignore< string>
212200
213- " Restore" ==> " ReplaceFsLibLogNamespaces " ==> " Build" |> ignore< string>
201+ " Restore" ==> " Build" |> ignore< string>
214202
215203 " CheckFormat" ==> " Build" ==> " LspTest" ==> " Coverage" ==> " Test" ==> " All"
216204 |> ignore< string>
217205
218- " ReplaceFsLibLogNamespaces"
219- ==> " LocalRelease"
206+ " LocalRelease"
220207 ==> " ReleaseArchive"
221208 ==> " Release"
222209 |> ignore< string>
0 commit comments