Skip to content

Commit 99f2569

Browse files
committed
remove unused tools
1 parent 6fbd1b8 commit 99f2569

File tree

5 files changed

+4
-1133
lines changed

5 files changed

+4
-1133
lines changed

.config/dotnet-tools.json

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,6 @@
22
"version": 1,
33
"isRoot": true,
44
"tools": {
5-
"fake-cli": {
6-
"version": "5.23.0",
7-
"commands": [
8-
"fake"
9-
]
10-
},
11-
"paket": {
12-
"version": "7.2.0-alpha001",
13-
"commands": [
14-
"paket"
15-
]
16-
},
17-
"octonav": {
18-
"version": "0.0.1",
19-
"commands": [
20-
"octonav"
21-
]
22-
},
235
"dotnet-reportgenerator-globaltool": {
246
"version": "5.0.2",
257
"commands": [
@@ -33,4 +15,4 @@
3315
]
3416
}
3517
}
36-
}
18+
}

build/Program.fs

Lines changed: 2 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ open Fake.DotNet
66
open Fake.Core.TargetOperators
77
open Fake.Tools
88

9-
System.Environment.CurrentDirectory <- (Path.combine __SOURCE_DIRECTORY__ "..")
10-
119
let project = "FsAutoComplete"
1210
let changeLogFile = "CHANGELOG.md"
1311
let 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>

build/build.fsproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,6 @@
1515
<PackageReference Include="Fake.DotNet" Version="2.0.0" />
1616
<PackageReference Include="Fake.DotNet.Cli" Version="5.23.1" />
1717
<PackageReference Include="Fake.Tools.Git" Version="5.23.1" />
18+
<PackageReference Include="MSBuild.StructuredLogger" Version="2.1.768" />
1819
</ItemGroup>
1920
</Project>

paket.dependencies

Lines changed: 0 additions & 73 deletions
This file was deleted.

0 commit comments

Comments
 (0)