-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUniversityEnrollmentSystem.csproj
More file actions
67 lines (56 loc) · 2.67 KB
/
UniversityEnrollmentSystem.csproj
File metadata and controls
67 lines (56 loc) · 2.67 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="FastEndpoints" Version="5.35.0" />
<PackageReference Include="FastEndpoints.Swagger" Version="5.35.0" />
<PackageReference Include="NSwag.AspNetCore" Version="14.2.0" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.13"/>
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.6.2"/>
<PackageReference Include="FluentValidation" Version="11.11.0" />
<PackageReference Include="FastEndpoints.Security" Version="5.35.0" />
</ItemGroup>
<ItemGroup>
<!-- Domain Layer -->
<Folder Include="Domain\" />
<Folder Include="Domain\Entities\" />
<Folder Include="Domain\Events\" />
<Folder Include="Domain\ValueObjects\" />
<Folder Include="Domain\Enums\" />
<!-- Application Layer -->
<Folder Include="Application\" />
<!-- Features (Vertical Slices) -->
<Folder Include="Features\" />
<Folder Include="Features\Students\" />
<Folder Include="Features\Students\Endpoints\" />
<Folder Include="Features\Students\Validators\" />
<Folder Include="Features\Students\Mappers\" />
<Folder Include="Features\Classes\" />
<Folder Include="Features\Classes\Endpoints\" />
<Folder Include="Features\Classes\Validators\" />
<Folder Include="Features\Classes\Mappers\" />
<Folder Include="Features\Enrollments\" />
<Folder Include="Features\Enrollments\Endpoints\" />
<Folder Include="Features\Enrollments\Validators\" />
<Folder Include="Features\Enrollments\Mappers\" />
<Folder Include="Features\Marks\" />
<Folder Include="Features\Marks\Endpoints\" />
<Folder Include="Features\Marks\Validators\" />
<Folder Include="Features\Marks\Mappers\" />
<!-- Infrastructure Layer -->
<Folder Include="Infrastructure\" />
<Folder Include="Infrastructure\Data\" />
<Folder Include="Infrastructure\Services\" />
<Folder Include="Infrastructure\Persistence\" />
<!-- Common/Shared Layer -->
<Folder Include="Common\" />
<Folder Include="Common\Extensions\" />
<Folder Include="Common\Middleware\" />
<Folder Include="Common\Exceptions\" />
<Folder Include="Common\Behaviors\" />
<Folder Include="Common\Constants\" />
</ItemGroup>
</Project>