You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Autofac" Version="7.1.0" />
|
|
|
|
|
<PackageReference Include="Autofac.Extensions.DependencyInjection" Version="8.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Log4Net.AspNetCore" Version="8.0.0" />
|
|
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\HybirdFrameworkCore\HybirdFrameworkCore.csproj" />
|
|
|
|
|
<ProjectReference Include="..\HybirdFrameworkRepository\HybirdFrameworkRepository.csproj" />
|
|
|
|
|
<ProjectReference Include="..\HybirdFrameworkServices\HybirdFrameworkServices.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Update="appsettings.json">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|