forked from Erdemstar/VulnerableApp4APISecurity
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathVulnerableApp4APISecurity.Core.csproj
82 lines (80 loc) · 3.17 KB
/
VulnerableApp4APISecurity.Core.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Remove="Entities\" />
<None Remove="Mapper\" />
<None Remove="DTO\" />
<None Remove="Interfaces\" />
<None Remove="Entities\Base\" />
<None Remove="Interfaces\Entities\" />
<None Remove="Interfaces\Entities\Base\" />
<None Remove="Entities\Card\" />
<None Remove="Entities\Account\" />
<None Remove="Entities\Profile\" />
<None Remove="Interfaces\DTO\" />
<None Remove="Interfaces\DTO\Base\" />
<None Remove="DTO\Base\" />
<None Remove="DTO\Account\" />
<None Remove="DTO\Card\" />
<None Remove="DTO\Others\" />
<None Remove="DTO\Profile\" />
<None Remove="Interfaces\DTO\Others\" />
<None Remove="DTO\Others\Response\" />
<None Remove="Interfaces\DTO\Others\Response\" />
<None Remove="DTO\Others\Response\Base\" />
<None Remove="DTO\Others\Response\Success\" />
<None Remove="DTO\Others\Response\Failed\" />
<None Remove="Interfaces\Repositories\" />
<None Remove="Interfaces\Mapper\" />
<None Remove="Interfaces\Mapper\Base\" />
<None Remove="Interfaces\Repositories\Base\" />
<None Remove="Interfaces\Repositories\Account\" />
<None Remove="Interfaces\Repositories\Profile\" />
<None Remove="Interfaces\Repositories\Card\" />
<None Remove="Interfaces\Utility\" />
<None Remove="Interfaces\Utility\JWT\" />
<None Remove="Interfaces\Utility\Database\" />
</ItemGroup>
<ItemGroup>
<Folder Include="Entities\" />
<Folder Include="Mapper\" />
<Folder Include="DTO\" />
<Folder Include="Interfaces\" />
<Folder Include="Entities\Base\" />
<Folder Include="Interfaces\Entities\" />
<Folder Include="Interfaces\Entities\Base\" />
<Folder Include="Entities\Card\" />
<Folder Include="Entities\Account\" />
<Folder Include="Entities\Profile\" />
<Folder Include="Interfaces\DTO\" />
<Folder Include="Interfaces\DTO\Base\" />
<Folder Include="DTO\Base\" />
<Folder Include="DTO\Account\" />
<Folder Include="DTO\Card\" />
<Folder Include="DTO\Others\" />
<Folder Include="DTO\Profile\" />
<Folder Include="Interfaces\DTO\Others\" />
<Folder Include="DTO\Others\Response\" />
<Folder Include="Interfaces\DTO\Others\Response\" />
<Folder Include="DTO\Others\Response\Base\" />
<Folder Include="DTO\Others\Response\Success\" />
<Folder Include="DTO\Others\Response\Failed\" />
<Folder Include="Interfaces\Repositories\" />
<Folder Include="Interfaces\Mapper\" />
<Folder Include="Interfaces\Mapper\Base\" />
<Folder Include="Interfaces\Repositories\Base\" />
<Folder Include="Interfaces\Repositories\Account\" />
<Folder Include="Interfaces\Repositories\Profile\" />
<Folder Include="Interfaces\Repositories\Card\" />
<Folder Include="Interfaces\Utility\" />
<Folder Include="Interfaces\Utility\JWT\" />
<Folder Include="Interfaces\Utility\Database\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MongoDB.Driver" Version="2.21.0" />
</ItemGroup>
</Project>