-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMealApplication.csproj
53 lines (48 loc) · 3.01 KB
/
MealApplication.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<None Include="wwwroot\lib\flag-icon-css\.github\FUNDING.yml" />
<None Include="wwwroot\lib\kartik-v-bootstrap-fileinput-9022178\.github\CODE_OF_CONDUCT.md" />
<None Include="wwwroot\lib\kartik-v-bootstrap-fileinput-9022178\.github\config.yml" />
<None Include="wwwroot\lib\kartik-v-bootstrap-fileinput-9022178\.github\CONTRIBUTING.md" />
<None Include="wwwroot\lib\kartik-v-bootstrap-fileinput-9022178\.github\FUNDING.yml" />
<None Include="wwwroot\lib\kartik-v-bootstrap-fileinput-9022178\.github\ISSUE_TEMPLATE.md" />
<None Include="wwwroot\lib\kartik-v-bootstrap-fileinput-9022178\.github\PULL_REQUEST_TEMPLATE.md" />
<None Include="wwwroot\lib\kartik-v-bootstrap-fileinput-9022178\.github\stale.yml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="12.0.1" />
<PackageReference Include="EPPlus" Version="6.2.10" />
<PackageReference Include="FluentValidation" Version="11.7.1" />
<PackageReference Include="FluentValidation.AspNetCore" Version="11.3.0" />
<PackageReference Include="FluentValidation.DependencyInjectionExtensions" Version="11.7.1" />
<PackageReference Include="MailKit" Version="1.18.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="7.0.12" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="6.0.16" />
<PackageReference Include="MimeKit" Version="2.9.1" />
<PackageReference Include="MySql.Data" Version="8.1.0" />
<PackageReference Include="RestSharp" Version="106.11.7" />
<PackageReference Include="datatables.net" Version="1.11.7" />
<PackageReference Include="System.DirectoryServices.AccountManagement" Version="7.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\src.Core\src.Core.csproj" />
<ProjectReference Include="..\src.Data\src.Data.csproj" />
<ProjectReference Include="..\src.Emails\src.Emails.csproj" />
<ProjectReference Include="..\src.Localization\src.Localization.csproj" />
<ProjectReference Include="..\src.NovellDirectoryLdap\src.NovellDirectoryLdap.csproj" />
<ProjectReference Include="..\src.Repositories\src.Repositories.csproj" />
<ProjectReference Include="..\src.Web.Commom\src.Web.Common.csproj" />
</ItemGroup>
</Project>