-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSplitzBackend.csproj
More file actions
48 lines (48 loc) · 2.73 KB
/
Copy pathSplitzBackend.csproj
File metadata and controls
48 lines (48 loc) · 2.73 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<DockerfileContext>.</DockerfileContext>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="SplitzBackend.Tests\**\*.cs" />
<Content Remove="SplitzBackend.Tests\**\*" />
<None Remove="SplitzBackend.Tests\**\*" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AutoMapper" Version="16.1.1" />
<PackageReference Include="AutoMapper.Collection" Version="13.0.0" />
<PackageReference Include="AutoMapper.Collection.EntityFrameworkCore" Version="13.0.0" />
<PackageReference Include="AWSSDK.Core" Version="4.0.9.6" />
<PackageReference Include="FluentStorage" Version="6.0.4" />
<PackageReference Include="FluentStorage.AWS" Version="6.0.3" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.0.9" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.9" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.9" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.9">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.9" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.0.9">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="10.0.2" />
<PackageReference Include="NetVips" Version="3.2.0" />
<PackageReference Include="NetVips.Native.linux-x64" Version="8.18.3" />
<PackageReference Include="NetVips.Native.win-x64" Version="8.18.3" />
<PackageReference Include="NuGet.Packaging" Version="7.6.0" />
<PackageReference Include="NuGet.Protocol" Version="7.6.0" />
<PackageReference Include="Resend" Version="0.1.0" />
<PackageReference Include="Scalar.AspNetCore" Version="2.16.4" />
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="3.0.3" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.2.2" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="10.2.2" />
<PackageReference Include="System.IO.Hashing" Version="10.0.9" />
</ItemGroup>
</Project>