18 lines
411 B
XML
18 lines
411 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Addresses\" />
|
|
<Folder Include="Emails\" />
|
|
<Folder Include="Companies\" />
|
|
<Folder Include="Profiles\" />
|
|
<Folder Include="Users\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|