I am getting the following error, when updating:
This hasn't been an issue before, and the project is referenced. In code:
// Add the SQL db connection
services.AddContext<LairageContext>(Configuration.GetConnectionString("SqlConnection"), ServiceLifetime.Transient);
This is from startup.cs
It is referenced in dependencies:
And in the project references:
<ItemGroup>
<ProjectReference Include="..\Marel.LairageScanner.Context.Sql\Marel.LairageScanner.Context.Sql.csproj" />
<ProjectReference Include="..\Marel.Models\Marel.Models.csproj" />
</ItemGroup>
So I truly don't understand why this is happening.