summaryrefslogtreecommitdiff
path: root/Client.csproj
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2026-05-24 00:45:01 +1000
committerJake Mannens <jake@asger.xyz>2026-06-07 12:32:45 +1000
commitb656bd974a83fdf73c1a10c9b74b266deeeb8f5a (patch)
tree2212f8357c0043306565dc3a61634a10ab10e703 /Client.csproj
parentc51ff4e755f009ca0bc8e935a92c04e583c4ee8a (diff)
Renamed Server.csproj to Client.csproj
Diffstat (limited to 'Client.csproj')
-rw-r--r--Client.csproj57
1 files changed, 57 insertions, 0 deletions
diff --git a/Client.csproj b/Client.csproj
new file mode 100644
index 0000000..e1d8051
--- /dev/null
+++ b/Client.csproj
@@ -0,0 +1,57 @@
+<Project Sdk="Microsoft.NET.Sdk.Web">
+
+ <PropertyGroup>
+ <TargetFramework>net10.0</TargetFramework>
+ <Nullable>enable</Nullable>
+ <ImplicitUsings>enable</ImplicitUsings>
+ <AssemblyName>HyperBooru</AssemblyName>
+ <RootNamespace>HyperBooru</RootNamespace>
+ <AssemblyVersion>0.17.0.0</AssemblyVersion>
+ <FileVersion>$(AssemblyVersion)</FileVersion>
+ <Version>0.17-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>
+
+ <PropertyGroup>
+ <DefaultItemExcludes>$(DefaultItemExcludes);Data/**</DefaultItemExcludes>
+ </PropertyGroup>
+
+ <PropertyGroup Condition="'$(Configuration)' == 'Release'">
+ <DebugType>None</DebugType>
+ <DebugSymbols>false</DebugSymbols>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Compile Remove="Data/**" />
+ <Content Remove="Data/**" />
+ <EmbeddedResource Remove="Data/**" />
+ <None Remove="Data/**" />
+ </ItemGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Magick.NET-Q16-AnyCPU" Version="14.14.0" />
+ <PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.8" />
+ <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.8">
+ <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="10.0.2" />
+ <PackageReference Include="Swashbuckle.AspNetCore" Version="10.2.1" />
+ <PackageReference Include="System.Drawing.Common" Version="10.0.8" />
+ <PackageReference Include="Tesseract" Version="5.2.0" />
+ </ItemGroup>
+
+ <ItemGroup>
+ <ProjectReference Include="..\ApiModels\ApiModels.csproj" />
+ </ItemGroup>
+
+</Project>