2022-06-22 20:35:12 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2022-06-23 14:56:18 -04:00
|
|
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
|
|
|
|
<SelfContained>false</SelfContained>
|
2022-06-22 20:35:12 -04:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-06-24 08:47:22 -04:00
|
|
|
|
<Content Include="appsettings*.json" CopyToOutputDirectory="Always" />
|
2022-06-22 20:35:12 -04:00
|
|
|
|
<Compile Include="Caches.fs" />
|
2024-03-26 20:13:28 -04:00
|
|
|
|
<Compile Include="Views\Helpers.fs" />
|
|
|
|
|
|
<Compile Include="Views\Admin.fs" />
|
|
|
|
|
|
<Compile Include="Views\Page.fs" />
|
|
|
|
|
|
<Compile Include="Views\Post.fs" />
|
|
|
|
|
|
<Compile Include="Views\User.fs" />
|
|
|
|
|
|
<Compile Include="Views\WebLog.fs" />
|
2022-06-22 20:35:12 -04:00
|
|
|
|
<Compile Include="Handlers\Helpers.fs" />
|
|
|
|
|
|
<Compile Include="Handlers\Admin.fs" />
|
|
|
|
|
|
<Compile Include="Handlers\Feed.fs" />
|
2022-07-16 12:33:34 -04:00
|
|
|
|
<Compile Include="Handlers\Page.fs" />
|
2022-06-22 20:35:12 -04:00
|
|
|
|
<Compile Include="Handlers\Post.fs" />
|
|
|
|
|
|
<Compile Include="Handlers\User.fs" />
|
2022-06-28 17:34:18 -04:00
|
|
|
|
<Compile Include="Handlers\Upload.fs" />
|
2022-06-22 20:35:12 -04:00
|
|
|
|
<Compile Include="Handlers\Routes.fs" />
|
|
|
|
|
|
<Compile Include="DotLiquidBespoke.fs" />
|
|
|
|
|
|
<Compile Include="Maintenance.fs" />
|
|
|
|
|
|
<Compile Include="Program.fs" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-03-26 20:13:28 -04:00
|
|
|
|
<PackageReference Include="BitBadger.AspNetCore.CanonicalDomains" Version="1.0.0" />
|
|
|
|
|
|
<PackageReference Include="DotLiquid" Version="2.2.692" />
|
2024-06-19 16:17:45 -04:00
|
|
|
|
<PackageReference Include="Giraffe" Version="6.4.0" />
|
|
|
|
|
|
<PackageReference Include="Giraffe.Htmx" Version="2.0.0" />
|
|
|
|
|
|
<PackageReference Include="Giraffe.ViewEngine.Htmx" Version="2.0.0" />
|
2024-03-26 20:13:28 -04:00
|
|
|
|
<PackageReference Include="NeoSmart.Caching.Sqlite.AspNetCore" Version="8.0.0" />
|
2022-06-22 20:35:12 -04:00
|
|
|
|
<PackageReference Include="RethinkDB.DistributedCache" Version="1.0.0-rc1" />
|
2024-03-26 20:13:28 -04:00
|
|
|
|
<PackageReference Include="System.ServiceModel.Syndication" Version="8.0.0" />
|
2024-06-19 16:17:45 -04:00
|
|
|
|
<PackageReference Update="FSharp.Core" Version="8.0.300" />
|
2022-06-22 20:35:12 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\MyWebLog.Data\MyWebLog.Data.fsproj" />
|
|
|
|
|
|
<ProjectReference Include="..\MyWebLog.Domain\MyWebLog.Domain.fsproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-06-28 17:34:18 -04:00
|
|
|
|
<None Include=".\wwwroot\upload\*" CopyToOutputDirectory="Always" />
|
2022-06-22 20:35:12 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2024-03-26 20:13:28 -04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
|
|
|
|
|
|
<_Parameter1>MyWebLog.Tests</_Parameter1>
|
|
|
|
|
|
</AssemblyAttribute>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2022-06-22 20:35:12 -04:00
|
|
|
|
</Project>
|