- Move all admin functions to /admin URLs - Create Liquid filters for page/post edit, category/tag link - Update all themes to use these filters - Add delete for pages/posts - Move category/page functions to Admin module
40 lines
1.3 KiB
XML
40 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<NoWarn>3391</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="appsettings.json" CopyToOutputDirectory="Always" />
|
|
<Compile Include="Caches.fs" />
|
|
<Compile Include="Handlers\Error.fs" />
|
|
<Compile Include="Handlers\Helpers.fs" />
|
|
<Compile Include="Handlers\Admin.fs" />
|
|
<Compile Include="Handlers\Post.fs" />
|
|
<Compile Include="Handlers\User.fs" />
|
|
<Compile Include="Handlers\Routes.fs" />
|
|
<Compile Include="Program.fs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="DotLiquid" Version="2.2.656" />
|
|
<PackageReference Include="Giraffe" Version="6.0.0" />
|
|
<PackageReference Include="RethinkDB.DistributedCache" Version="0.9.0-alpha05" />
|
|
<PackageReference Update="FSharp.Core" Version="6.0.4" />
|
|
<PackageReference Include="System.ServiceModel.Syndication" Version="6.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\MyWebLog.Data\MyWebLog.Data.fsproj" />
|
|
<ProjectReference Include="..\MyWebLog.Domain\MyWebLog.Domain.fsproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include=".\themes\**" CopyToOutputDirectory="Always" />
|
|
<None Include=".\wwwroot\**" CopyToOutputDirectory="Always" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|