41 lines
1.1 KiB
XML
41 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Refit" Version="7.0.0" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\NetinaShop.Core\NetinaShop.Core.csproj" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Models\" />
|
|
<Folder Include="Services\" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<Using Include="Microsoft.Extensions.Hosting" />
|
|
<Using Include="Microsoft.Extensions.Logging" />
|
|
<Using Include="Microsoft.Extensions.Options" />
|
|
<Using Include="NetinaShop.Common.Models" />
|
|
<Using Include="NetinaShop.Common.Models.Api" />
|
|
<Using Include="NetinaShop.Common.Models.Exception" />
|
|
<Using Include="NetinaShop.Core.Abstracts" />
|
|
<Using Include="NetinaShop.Domain.Models.Settings" />
|
|
<Using Include="NetinaShop.Infrastructure.Models.RestApi.KaveNegar" />
|
|
<Using Include="NetinaShop.Infrastructure.RestServices" />
|
|
<Using Include="Refit" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|