Daniel J. Summers
f1a7e55f3e
- Add full chapter support (#6) - Add built-in redirect functionality (#39) - Support building Docker containers for release (#38) - Support canonical domain configuration (#37) - Add unit tests for domain/models and integration tests for all three data stores - Convert SQLite storage to use JSON documents, similar to PostgreSQL - Convert admin templates to Giraffe View Engine (from Liquid) - Add .NET 8 support
21 lines
607 B
XML
21 lines
607 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="build.fs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Fake.Core.Target" Version="6.0.0" />
|
|
<PackageReference Include="Fake.DotNet.Cli" Version="6.0.0" />
|
|
<PackageReference Include="Fake.IO.FileSystem" Version="6.0.0" />
|
|
<PackageReference Include="Fake.IO.Zip" Version="6.0.0" />
|
|
<PackageReference Include="MSBuild.StructuredLogger" Version="2.2.206" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|