Skip to content

Commit 24c130f

Browse files
committed
Move LICENSE to repo root, fix package file refs, run tests per TFM
1 parent ad02678 commit 24c130f

4 files changed

Lines changed: 7 additions & 81 deletions

File tree

File renamed without changes.

lib/src/Build/Program.fs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,11 @@ let getVersion () =
4646
Target.create "CleanNugets" <| fun _ -> Shell.cleanDir nugetsDir
4747

4848
Target.create "Test" <| fun _ ->
49-
dotnet testsDir ["test"]
50-
|> Async.RunSynchronously
49+
["net8.0"; "net9.0"; "net10.0"]
50+
|> List.iter (fun tfm ->
51+
dotnet testsDir ["run"; "--framework"; tfm]
52+
|> Async.RunSynchronously
53+
)
5154

5255
Target.create "Pack" (fun _ ->
5356
let project = srcDir </> "FSharp.ViewEngine" </> "FSharp.ViewEngine.fsproj"

lib/src/FSharp.ViewEngine/FSharp.ViewEngine.fsproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
<Compile Include="Tailwind.fs" />
1818
<Compile Include="Svg.fs" />
1919
<Compile Include="Datastar.fs" />
20-
<None Include="../../LICENSE" Pack="True" Visible="false" PackagePath="" />
21-
<None Include="../../README.md" Pack="True" Visible="false" PackagePath="" />
20+
<None Include="../../../LICENSE" Pack="True" Visible="false" PackagePath="" />
21+
<None Include="../../../README.md" Pack="True" Visible="false" PackagePath="" />
2222
<Content Include="paket.references" />
2323
</ItemGroup>
2424
<Import Project="..\..\.paket\Paket.Restore.targets" />

lib/src/FSharp.ViewEngine/README.md

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

0 commit comments

Comments
 (0)