18 lines
428 B
XML
18 lines
428 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Entities\" />
|
|
<Folder Include="Exceptions\" />
|
|
<Folder Include="DomainEvents\" />
|
|
<Folder Include="ValueObjects\" />
|
|
<Folder Include="Repositories\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|