Skip to content

Commit 5dfa9a9

Browse files
committed
Restore tags.csv, remove tags replacement in Build
1 parent 0609b3b commit 5dfa9a9

File tree

4 files changed

+662
-121
lines changed

4 files changed

+662
-121
lines changed

src/build/WebSharper.Build/Main.fs

+1-5
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,6 @@ module Main =
7171
lib "lib" "WebSharper.Core"
7272
lib "lib" "WebSharper.InterfaceGenerator"
7373
lib "tools" "WebSharper.MSBuild"
74-
// htmllib:
75-
lib "lib" "WebSharper.Html.Server"
76-
lib "lib" "WebSharper.Html.Client"
7774
// sitelets:
7875
lib "lib" "WebSharper.Sitelets"
7976
lib "lib" "WebSharper.Web"
@@ -147,7 +144,7 @@ module Main =
147144
yield file "tools" (Path.Combine(fscore, "FSharp.Core.sigdata")) None
148145
for (src, tgt) in searchDir (Path.Combine(root, "docs")) do
149146
yield fileAt src ("/docs" + tgt)
150-
//yield fileAt (Path.Combine(root, "src", "htmllib", "tags.csv")) ("/tools/net40/tags.csv")
147+
yield fileAt (Path.Combine(root, "src", "htmllib", "tags.csv")) ("/tools/net40/tags.csv")
151148
}
152149
}
153150
let compilerNuPkg =
@@ -185,7 +182,6 @@ module Main =
185182
match Seq.toList args with
186183
| ["minify"] | ["prepare"] ->
187184
Minify.Run()
188-
//Tags.Run()
189185
| ["package"] -> Package ()
190186
| _ ->
191187
printfn "Known commands:"

src/build/WebSharper.Build/Tags.fs

-115
This file was deleted.

src/build/WebSharper.Build/WebSharper.Build.fsproj

-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
<ItemGroup>
2222
<Compile Include="Config.fs" />
2323
<Compile Include="Utils.fs" />
24-
<Compile Include="Tags.fs" />
2524
<Compile Include="Minify.fs" />
2625
<Compile Include="Main.fs" />
2726
<None Include="WebSharper.exe.config">

0 commit comments

Comments
 (0)