summaryrefslogtreecommitdiff
path: root/Server.csproj
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2026-03-17 03:04:36 +1100
committerJake Mannens <jake@asger.xyz>2026-03-25 01:57:41 +1100
commitc751709b1b4fe6f16fd84647e8e071455e7b78d6 (patch)
tree47734a083d888660606e6cf6cf158c93e69a9807 /Server.csproj
v0.1av0.1a
Diffstat (limited to 'Server.csproj')
-rw-r--r--Server.csproj37
1 files changed, 37 insertions, 0 deletions
diff --git a/Server.csproj b/Server.csproj
new file mode 100644
index 0000000..e3ca595
--- /dev/null
+++ b/Server.csproj
@@ -0,0 +1,37 @@
+<Project Sdk="Microsoft.NET.Sdk.Web">
+
+ <PropertyGroup>
+ <TargetFramework>net8.0</TargetFramework>
+ <Nullable>enable</Nullable>
+ <ImplicitUsings>enable</ImplicitUsings>
+ <AssemblyName>HyperBooru</AssemblyName>
+ <RootNamespace>HyperBooru</RootNamespace>
+ <AssemblyVersion>0.1.0.0</AssemblyVersion>
+ <FileVersion>$(AssemblyVersion)</FileVersion>
+ <Version>0.1-alpha</Version>
+ <UserSecretsId>2907567f-4640-4581-8f4d-0977952d26bd</UserSecretsId>
+ </PropertyGroup>
+
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
+ <NoWarn>1701;1702;8618</NoWarn>
+ </PropertyGroup>
+
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
+ <NoWarn>1701;1702;8618</NoWarn>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Magick.NET-Q16-AnyCPU" Version="14.10.2" />
+ <PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.23" />
+ <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.23">
+ <PrivateAssets>all</PrivateAssets>
+ <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
+ </PackageReference>
+ <PackageReference Include="Mime-Detective" Version="25.8.1" />
+ <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.11" />
+ <PackageReference Include="Swashbuckle.AspNetCore" Version="8.1.4" />
+ <PackageReference Include="System.Drawing.Common" Version="8.0.23" />
+ <PackageReference Include="Tesseract" Version="5.2.0" />
+ </ItemGroup>
+
+</Project>