24 lines
635 B
XML
24 lines
635 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<InternalsVisibleTo Include="CatHasPawsTests" />
|
|
<InternalsVisibleTo Include="CatHasPawsWebApi" />
|
|
<InternalsVisibleTo Include="DynamicProxyGenAssembly2" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\CatHasPawsContratcs\CatHasPawsContratcs.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|