2023-02-14 17:51:22 -08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Hangfire.AspNetCore" Version="1.7.33" />
|
|
|
|
<PackageReference Include="Hangfire.MemoryStorage" Version="1.7.0" />
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="7.0.0" />
|
2023-02-19 21:39:03 -08:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
|
2023-02-14 17:51:22 -08:00
|
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Newsbot.Collector.Domain\Newsbot.Collector.Domain.csproj" />
|
|
|
|
<ProjectReference Include="..\Newsbot.Collector.Services\Newsbot.Collector.Services.csproj" />
|
2023-02-16 22:19:05 -08:00
|
|
|
<ProjectReference Include="..\Newsbot.Collector.Database\Newsbot.Collector.Database.csproj" />
|
2023-02-14 17:51:22 -08:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|