9955ae191a
The explicitly added versions were conflicting with the centralized version definitions in Directory.Packages.props. Removed all explicit versions from: - web/web.csproj - Jobs/cv-cleanup-job/cv-cleanup-job.csproj - Jobs/cv-search-job/cv-search-job.csproj NuGet will now resolve versions from Directory.Packages.props which has the canonical version definitions for the entire solution. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
33 lines
1.3 KiB
XML
33 lines
1.3 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Worker">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<RootNamespace>CvSearchJob</RootNamespace>
|
|
<AssemblyName>cv-search-job</AssemblyName>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- MailKit removed — email sending delegated to email-api service -->
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" />
|
|
<PackageReference Include="Refit.HttpClientFactory" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="logs\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Apis\cv-matcher-api-models\cv-matcher-api-models.csproj" />
|
|
<ProjectReference Include="..\..\Apis\email-api-data\email-api-data.csproj" />
|
|
<ProjectReference Include="..\..\Apis\email-api-models\email-api-models.csproj" />
|
|
<ProjectReference Include="..\..\Apis\cv-search-data\cv-search-data.csproj" />
|
|
<ProjectReference Include="..\..\Apis\common\common.csproj" />
|
|
<ProjectReference Include="..\..\Helpers\startup-helpers\startup-helpers.csproj" />
|
|
<ProjectReference Include="..\job-scheduler\job-scheduler.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|