-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApplication.csproj
26 lines (22 loc) · 1.02 KB
/
Application.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
26
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Azure.Storage.Blobs" Version="12.12.0" />
<PackageReference Include="FluentValidation" Version="11.0.1" />
<PackageReference Include="FluentValidation.AspNetCore" Version="11.0.1" />
<PackageReference Include="MailKit" Version="3.3.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
<PackageReference Include="MimeKit" Version="3.3.0" />
<PackageReference Include="NLog" Version="5.0.0" />
<PackageReference Include="Syncfusion.Pdf.Net.Core" Version="20.2.0.39" />
<PackageReference Include="System.Drawing.Common" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DataAccess\DataAccess.csproj" />
<ProjectReference Include="..\Core\Core.csproj" />
</ItemGroup>
</Project>