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>
26 lines
731 B
XML
26 lines
731 B
XML
<Project Sdk="Microsoft.NET.Sdk.Worker">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<RootNamespace>CvCleanupJob</RootNamespace>
|
|
<AssemblyName>cv-cleanup-job</AssemblyName>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="logs\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\Apis\api-models\api-models.csproj" />
|
|
<ProjectReference Include="..\..\Helpers\startup-helpers\startup-helpers.csproj" />
|
|
<ProjectReference Include="..\job-scheduler\job-scheduler.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|