-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFaktura.Infrastructure.csproj
More file actions
30 lines (25 loc) · 1.17 KB
/
Copy pathFaktura.Infrastructure.csproj
File metadata and controls
30 lines (25 loc) · 1.17 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
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\Faktura.Domain\Faktura.Domain.csproj" />
</ItemGroup>
<ItemGroup>
<!-- Testcontainers-testerna instansierar de interna Mongo-repositoriesarna direkt. -->
<InternalsVisibleTo Include="Faktura.Api.Tests" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MailKit" Version="4.17.0" />
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.11" />
<PackageReference Include="Microsoft.Extensions.Options" Version="10.0.11" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="10.0.11" />
<PackageReference Include="MongoDB.Driver" Version="3.11.1" />
<PackageReference Include="QuestPDF" Version="2026.8.0" />
<PackageReference Include="StackExchange.Redis" Version="3.1.31" />
<PackageReference Include="Stripe.net" Version="52.4.1" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.22.0" />
</ItemGroup>
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>