Updates
This commit is contained in:
@@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Cortex.Mediator" Version="3.1.2" />
|
<PackageReference Include="Cortex.Mediator" Version="3.1.2" />
|
||||||
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.3" />
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.5" />
|
||||||
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.23.0" />
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.23.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,6 @@ namespace Lutra.API
|
|||||||
var builder = WebApplication.CreateBuilder(args);
|
var builder = WebApplication.CreateBuilder(args);
|
||||||
|
|
||||||
builder.Services.AddCortexMediator(
|
builder.Services.AddCortexMediator(
|
||||||
configuration: builder.Configuration,
|
|
||||||
handlerAssemblyMarkerTypes: [typeof(Program), typeof(GetVerspakketten)],
|
handlerAssemblyMarkerTypes: [typeof(Program), typeof(GetVerspakketten)],
|
||||||
options => options.AddDefaultBehaviors()
|
options => options.AddDefaultBehaviors()
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -11,8 +11,8 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Aspire.Hosting.AppHost" Version="13.1.1" />
|
<PackageReference Include="Aspire.Hosting.AppHost" Version="13.1.3" />
|
||||||
<PackageReference Include="Aspire.Hosting.SqlServer" Version="13.1.1" />
|
<PackageReference Include="Aspire.Hosting.SqlServer" Version="13.1.3" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@@ -8,7 +8,7 @@
|
|||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Cortex.Mediator" Version="3.1.2" />
|
<PackageReference Include="Cortex.Mediator" Version="3.1.2" />
|
||||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.3" />
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.5" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@@ -6,6 +6,6 @@ namespace Lutra.Application.Models.Verspakketten
|
|||||||
{
|
{
|
||||||
public required string Name { get; init; }
|
public required string Name { get; init; }
|
||||||
public required string Rating { get; init; }
|
public required string Rating { get; init; }
|
||||||
public Supermarkt Supermarkt { get; init; }
|
public Supermarkt? Supermarkt { get; init; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.3" />
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.5" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
@@ -1,9 +1,6 @@
|
|||||||
using Lutra.Application.Interfaces;
|
using Lutra.Application.Interfaces;
|
||||||
using Lutra.Domain.Entities;
|
using Lutra.Domain.Entities;
|
||||||
using Microsoft.EntityFrameworkCore;
|
using Microsoft.EntityFrameworkCore;
|
||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Text;
|
|
||||||
|
|
||||||
namespace Lutra.Infrastructure.Sql;
|
namespace Lutra.Infrastructure.Sql;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user