2025-02-17 22:42:11 +04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2025-02-21 00:57:12 +04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<InternalsVisibleTo Include="ButcherShopTests" />
|
|
|
|
|
<InternalsVisibleTo Include="DynamicProxyGenAssembly2" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.2" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2025-02-17 22:42:11 +04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\TheButcherShopContracts\TheButcherShopContracts.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|