-
Notifications
You must be signed in to change notification settings - Fork 6
/
Aiursoft.AiurDrive.csproj
25 lines (25 loc) · 1.28 KB
/
Aiursoft.AiurDrive.csproj
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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<AssemblyName>Aiursoft.AiurDrive</AssemblyName>
<RootNamespace>Aiursoft.AiurDrive</RootNamespace>
<IsTestProject>false</IsTestProject>
<IsPackable>false</IsPackable>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Description>AiurDrive is a free file sharing service. You can upload your files here and share them with others.</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Aiursoft.Canon" Version="8.0.6" />
<PackageReference Include="Aiursoft.DbTools.Sqlite" Version="8.0.23" />
<PackageReference Include="Aiursoft.WebTools" Version="8.0.27" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.10" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="8.0.10" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.10">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.5" />
</ItemGroup>
</Project>