This repository has been archived by the owner on Oct 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
25 changed files
with
2,037 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 13,12 @@ | |
"commands": [ | ||
"fable" | ||
] | ||
}, | ||
"paket": { | ||
"version": "7.1.5", | ||
"commands": [ | ||
"paket" | ||
] | ||
} | ||
} | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 1,19 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Web"> | ||
|
||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net6.0</TargetFramework> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="Types.fs" /> | ||
<Compile Include="Extensions.fs" /> | ||
<Compile Include="Server.fs" /> | ||
<Compile Include="Commands.fs" /> | ||
<Compile Include="Program.fs" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Content Include="mock.js" CopyToOutputDirectory="PreserveNewest" /> | ||
<Content Include="test.tpl.html" CopyToOutputDirectory="PreserveNewest" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Argu" Version="6.1.1" /> | ||
<PackageReference Include="Giraffe" Version="6.0.0" /> | ||
<PackageReference Include="Microsoft.Playwright" Version="1.25.0" /> | ||
<PackageReference Include="scriban" Version="5.5.0" /> | ||
<PackageReference Include="Spectre.Console" Version="0.45.0" /> | ||
</ItemGroup> | ||
|
||
</Project> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project Sdk="Microsoft.NET.Sdk.Web"> | ||
<PropertyGroup> | ||
<OutputType>Exe</OutputType> | ||
<TargetFramework>net6.0</TargetFramework> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="Types.fs" /> | ||
<Compile Include="Extensions.fs" /> | ||
<Compile Include="Server.fs" /> | ||
<Compile Include="Commands.fs" /> | ||
<Compile Include="Program.fs" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Content Include="mock.js" CopyToOutputDirectory="PreserveNewest" /> | ||
<Content Include="test.tpl.html" CopyToOutputDirectory="PreserveNewest" /> | ||
</ItemGroup> | ||
<Import Project="..\..\..\.paket\Paket.Restore.targets" /> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 1,6 @@ | ||
FSharp.Core | ||
Spectre.Console | ||
Scriban | ||
Giraffe | ||
Argu | ||
Microsoft.Playwright |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 1,46 @@ | ||
source https://api.nuget.org/v3/index.json | ||
|
||
nuget FSharp.Core | ||
nuget FSharp.UMX 1.1.0 | ||
nuget FSharp.Compiler.Service 41.0.6 | ||
nuget FSharp.Control.AsyncSeq 3.2.1 | ||
nuget FSharp.Control.Reactive 5.0.5 | ||
nuget FsToolkit.ErrorHandling 3.0.0 | ||
nuget FsToolkit.ErrorHandling.TaskResult 3.0.0 | ||
nuget FSharp.SystemCommandLine >= 0.13.0-beta4 prerelease | ||
|
||
nuget AngleSharp 0.17.1 | ||
nuget Flurl.Http 3.2.4 | ||
nuget CliWrap 3.5.0 | ||
nuget Spectre.Console 0.45.0 | ||
nuget LiteDB 5.0.12 | ||
nuget Scriban 5.5.0 | ||
nuget Zio 0.15.0 | ||
nuget SharpZipLib 1.4.0 | ||
nuget Hellang.Middleware.SpaFallback 2.0.0 | ||
nuget Fake.IO.FileSystem 5.23.0 | ||
|
||
nuget System.CommandLine >= 2.0.0-beta4.22272.1 prerelease | ||
nuget Microsoft.Extensions.Logging 6.0.0 | ||
nuget Yarp.ReverseProxy 1.1.1 | ||
|
||
# Experiments specific packages | ||
|
||
nuget Argu 6.1.1 | ||
nuget Giraffe 6.0.0 | ||
nuget Microsoft.Playwright 1.25.0 | ||
|
||
group Samples | ||
source https://api.nuget.org/v3/index.json | ||
|
||
nuget Sutil >= 1.0.0-0 prerelease | ||
nuget Fable.Browser.Dom >= 2.0 | ||
nuget Fable.Browser.Event >= 1.0 | ||
|
||
group Tests | ||
source https://api.nuget.org/v3/index.json | ||
|
||
nuget Microsoft.NET.Test.Sdk 17.3.2 | ||
nuget xunit 2.4.2 | ||
nuget xunit.runner.visualstudio 2.4.5 | ||
nuget coverlet.collector 3.1.2 |
Oops, something went wrong.