blob: 829efa472bc88e0daadb269a7ff2decd0028be87 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<BlazorDisableThrowNavigationException>true</BlazorDisableThrowNavigationException>
<AssemblyName>HyperBooru.Server</AssemblyName>
<RootNamespace>HyperBooru.Server</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Data/**" />
<Content Remove="Data/**" />
<EmbeddedResource Remove="Data/**" />
<None Remove="Data/**" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Server.Client\Client.csproj" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="10.0.8" />
<PackageReference Include="Magick.NET-Q16-AnyCPU" Version="14.13.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.7" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.7">
<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.1" />
<PackageReference Include="System.Drawing.Common" Version="10.0.7" />
<PackageReference Include="Tesseract" Version="5.2.0" />
</ItemGroup>
</Project>
|