2023-05-26 19:05:44 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2023-12-14 21:55:00 +00:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2023-05-26 19:05:44 +01:00
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
2024-02-28 19:09:02 +00:00
|
|
|
<VersionPrefix>1.1.0</VersionPrefix>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(VersionSuffix)' != '' And '$(BuildNumber)' == ''">
|
|
|
|
<Version>$(VersionPrefix)-$(VersionSuffix)</Version>
|
|
|
|
<AssemblyVersion>$(VersionPrefix).0</AssemblyVersion>
|
|
|
|
<FileVersion>$(VersionPrefix).0</FileVersion>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(VersionSuffix)' != '' And '$(BuildNumber)' != ''">
|
|
|
|
<Version>$(VersionPrefix)-$(VersionSuffix).$(BuildNumber)</Version>
|
|
|
|
<AssemblyVersion>$(VersionPrefix).$(BuildNumber)</AssemblyVersion>
|
|
|
|
<FileVersion>$(VersionPrefix).$(BuildNumber)</FileVersion>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(VersionSuffix)' == ''">
|
|
|
|
<Version>$(VersionPrefix)</Version>
|
|
|
|
<AssemblyVersion>$(VersionPrefix).0</AssemblyVersion>
|
|
|
|
<FileVersion>$(VersionPrefix).0</FileVersion>
|
2023-05-26 19:05:44 +01:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2023-08-12 18:35:57 +01:00
|
|
|
<ItemGroup>
|
2024-02-27 13:27:28 +00:00
|
|
|
<PackageReference Include="AspNetCore.ReCaptcha" Version="1.8.1"/>
|
2024-03-02 05:26:16 +00:00
|
|
|
<PackageReference Include="FluentFTP" Version="49.0.2"/>
|
|
|
|
<PackageReference Include="FluentFTP.Logging" Version="1.0.0"/>
|
2024-02-24 00:43:14 +00:00
|
|
|
<PackageReference Include="HtmlAgilityPack" Version="1.11.59"/>
|
2024-03-16 12:21:14 +00:00
|
|
|
<PackageReference Include="MailKit" Version="4.4.0"/>
|
2024-02-27 13:27:28 +00:00
|
|
|
<PackageReference Include="MailKitSimplified.Sender" Version="2.9.0"/>
|
2024-03-16 12:21:14 +00:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="8.0.3"/>
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="8.0.3"/>
|
|
|
|
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="8.0.3"/>
|
2024-03-02 00:43:56 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\OliverBooth.Common\OliverBooth.Common.csproj"/>
|
2023-08-12 18:35:57 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
2023-05-26 19:05:44 +01:00
|
|
|
</Project>
|