2022-06-23 00:35:12 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2022-06-23 18:56:18 +00:00
|
|
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
|
|
|
<SelfContained>false</SelfContained>
|
|
|
|
|
<DebugType>embedded</DebugType>
|
2022-06-23 00:35:12 +00:00
|
|
|
|
<NoWarn>3391</NoWarn>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-06-24 12:47:22 +00:00
|
|
|
|
<Content Include="appsettings*.json" CopyToOutputDirectory="Always" />
|
2022-06-23 00:35:12 +00:00
|
|
|
|
<Compile Include="Caches.fs" />
|
|
|
|
|
<Compile Include="Handlers\Error.fs" />
|
|
|
|
|
<Compile Include="Handlers\Helpers.fs" />
|
|
|
|
|
<Compile Include="Handlers\Admin.fs" />
|
|
|
|
|
<Compile Include="Handlers\Feed.fs" />
|
2022-07-16 16:33:34 +00:00
|
|
|
|
<Compile Include="Handlers\Page.fs" />
|
2022-06-23 00:35:12 +00:00
|
|
|
|
<Compile Include="Handlers\Post.fs" />
|
|
|
|
|
<Compile Include="Handlers\User.fs" />
|
2022-06-28 21:34:18 +00:00
|
|
|
|
<Compile Include="Handlers\Upload.fs" />
|
2022-06-23 00:35:12 +00:00
|
|
|
|
<Compile Include="Handlers\Routes.fs" />
|
|
|
|
|
<Compile Include="DotLiquidBespoke.fs" />
|
|
|
|
|
<Compile Include="Maintenance.fs" />
|
|
|
|
|
<Compile Include="Program.fs" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="DotLiquid" Version="2.2.656" />
|
|
|
|
|
<PackageReference Include="Giraffe" Version="6.0.0" />
|
2022-07-14 22:55:52 +00:00
|
|
|
|
<PackageReference Include="Giraffe.Htmx" Version="1.8.0" />
|
|
|
|
|
<PackageReference Include="Giraffe.ViewEngine.Htmx" Version="1.8.0" />
|
2022-06-23 00:35:12 +00:00
|
|
|
|
<PackageReference Include="NeoSmart.Caching.Sqlite" Version="6.0.1" />
|
|
|
|
|
<PackageReference Include="RethinkDB.DistributedCache" Version="1.0.0-rc1" />
|
|
|
|
|
<PackageReference Update="FSharp.Core" Version="6.0.5" />
|
|
|
|
|
<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>
|
2022-06-28 21:34:18 +00:00
|
|
|
|
<None Include=".\wwwroot\upload\*" CopyToOutputDirectory="Always" />
|
2022-06-23 00:35:12 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|