Skip to content

Commit d3bf891

Browse files
committed
Isolate business logic in the new Application project
Also move domain definitions to core
1 parent 3ca64be commit d3bf891

File tree

132 files changed

+2836
-2803
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

132 files changed

+2836
-2803
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net8.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
</PropertyGroup>
8+
9+
<ItemGroup>
10+
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="7.3.1" />
11+
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.3.1" />
12+
</ItemGroup>
13+
14+
<ItemGroup>
15+
<ProjectReference Include="..\AdvancedTodoList.Core\AdvancedTodoList.Core.csproj" />
16+
</ItemGroup>
17+
18+
</Project>
File renamed without changes.
File renamed without changes.
File renamed without changes.

AdvancedTodoList.Core/Dtos/PermissionsAggregate.cs renamed to AdvancedTodoList.Application/Dtos/PermissionsAggregate.cs

File renamed without changes.

AdvancedTodoList.Core/Dtos/TodoItemCategoryDtos.cs renamed to AdvancedTodoList.Application/Dtos/TodoItemCategoryDtos.cs

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)