21 lines
492 B
XML
21 lines
492 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Services\" />
|
|
<Folder Include="DTOs\" />
|
|
<Folder Include="Interfaces\" />
|
|
<Folder Include="Exceptions\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\DMS.Infrastructure\DMS.Infrastructure.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|