Skip to content

Commit 2ca6833

Browse files
committed
Upgrade SimpleBulks & MapItEasy
1 parent 60e3054 commit 2ca6833

File tree

29 files changed

+264
-26
lines changed

29 files changed

+264
-26
lines changed

src/IdentityServer/Duende/ClassifiedAds.CrossCuttingConcerns/ClassifiedAds.CrossCuttingConcerns.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="MapItEasy" Version="1.1.0" />
10+
<PackageReference Include="MapItEasy" Version="1.2.0" />
1111
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
1212
<PrivateAssets>all</PrivateAssets>
1313
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

src/IdentityServer/Duende/ClassifiedAds.Duende.slnx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
</Folder>
1313
<Folder Name="/Infrastructure/">
1414
<Project Path="ClassifiedAds.Infrastructure/ClassifiedAds.Infrastructure.csproj" />
15+
<Project Path="ClassifiedAds.Persistence.MySQL/ClassifiedAds.Persistence.MySQL.csproj" />
16+
<Project Path="ClassifiedAds.Persistence.PostgreSQL/ClassifiedAds.Persistence.PostgreSQL.csproj" />
1517
<Project Path="ClassifiedAds.Persistence/ClassifiedAds.Persistence.csproj" />
1618
</Folder>
1719
</Solution>

src/IdentityServer/Duende/ClassifiedAds.IdentityServer/Dockerfile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@ WORKDIR /ClassifiedAds.IdentityServer
55
COPY ./ClassifiedAds.Application/*.csproj ./ClassifiedAds.Application/
66
COPY ./ClassifiedAds.CrossCuttingConcerns/*.csproj ./ClassifiedAds.CrossCuttingConcerns/
77
COPY ./ClassifiedAds.Domain/*.csproj ./ClassifiedAds.Domain/
8-
COPY ./ClassifiedAds.IdentityServer/*.csproj ./ClassifiedAds.IdentityServer/
98
COPY ./ClassifiedAds.Infrastructure/*.csproj ./ClassifiedAds.Infrastructure/
10-
COPY ./ClassifiedAds.Migrator/*.csproj ./ClassifiedAds.Migrator/
119
COPY ./ClassifiedAds.Persistence/*.csproj ./ClassifiedAds.Persistence/
12-
COPY ./ClassifiedAds.Duende.slnx .
13-
RUN dotnet restore
10+
11+
RUN dotnet restore ./ClassifiedAds.Application/ClassifiedAds.Application.csproj
12+
RUN dotnet restore ./ClassifiedAds.Infrastructure/ClassifiedAds.Infrastructure.csproj
13+
14+
COPY ./ClassifiedAds.IdentityServer/*.csproj ./ClassifiedAds.IdentityServer/
15+
RUN dotnet restore ./ClassifiedAds.IdentityServer/ClassifiedAds.IdentityServer.csproj
1416

1517
# Copy everything else and build
1618
COPY . ./

src/IdentityServer/Duende/ClassifiedAds.Migrator/Dockerfile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@ WORKDIR /ClassifiedAds.IdentityServer
55
COPY ./ClassifiedAds.Application/*.csproj ./ClassifiedAds.Application/
66
COPY ./ClassifiedAds.CrossCuttingConcerns/*.csproj ./ClassifiedAds.CrossCuttingConcerns/
77
COPY ./ClassifiedAds.Domain/*.csproj ./ClassifiedAds.Domain/
8-
COPY ./ClassifiedAds.IdentityServer/*.csproj ./ClassifiedAds.IdentityServer/
98
COPY ./ClassifiedAds.Infrastructure/*.csproj ./ClassifiedAds.Infrastructure/
10-
COPY ./ClassifiedAds.Migrator/*.csproj ./ClassifiedAds.Migrator/
119
COPY ./ClassifiedAds.Persistence/*.csproj ./ClassifiedAds.Persistence/
12-
COPY ./ClassifiedAds.Duende.slnx .
13-
RUN dotnet restore
10+
11+
RUN dotnet restore ./ClassifiedAds.Application/ClassifiedAds.Application.csproj
12+
RUN dotnet restore ./ClassifiedAds.Infrastructure/ClassifiedAds.Infrastructure.csproj
13+
14+
COPY ./ClassifiedAds.Migrator/*.csproj ./ClassifiedAds.Migrator/
15+
RUN dotnet restore ./ClassifiedAds.Migrator/ClassifiedAds.Migrator.csproj
1416

1517
# Copy everything else and build
1618
COPY . ./
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net9.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
</PropertyGroup>
8+
9+
<ItemGroup>
10+
<PackageReference Include="EntityFrameworkCore.MySql.SimpleBulks" Version="8.0.0-preview.4" />
11+
<PackageReference Include="Microsoft.AspNetCore.DataProtection.EntityFrameworkCore" Version="9.0.1" />
12+
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.3.0" />
13+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.1" />
14+
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="9.0.1" />
15+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.1" />
16+
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
17+
<PrivateAssets>all</PrivateAssets>
18+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
19+
</PackageReference>
20+
</ItemGroup>
21+
22+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net9.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
6+
<Nullable>enable</Nullable>
7+
</PropertyGroup>
8+
9+
<ItemGroup>
10+
<PackageReference Include="EntityFrameworkCore.PostgreSQL.SimpleBulks" Version="8.0.0-preview.6" />
11+
<PackageReference Include="Microsoft.AspNetCore.DataProtection.EntityFrameworkCore" Version="9.0.1" />
12+
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.3.0" />
13+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.1" />
14+
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="9.0.1" />
15+
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.1" />
16+
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
17+
<PrivateAssets>all</PrivateAssets>
18+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
19+
</PackageReference>
20+
</ItemGroup>
21+
22+
</Project>

src/IdentityServer/Duende/ClassifiedAds.Persistence/ClassifiedAds.Persistence.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<ItemGroup>
1010
<PackageReference Include="Duende.IdentityServer.EntityFramework" Version="7.1.0" />
11-
<PackageReference Include="EntityFrameworkCore.SqlServer.SimpleBulks" Version="8.1.0" />
11+
<PackageReference Include="EntityFrameworkCore.SqlServer.SimpleBulks" Version="8.2.0" />
1212
<PackageReference Include="Microsoft.AspNetCore.DataProtection.EntityFrameworkCore" Version="9.0.1" />
1313
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.1" />
1414
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="9.0.1" />

src/IdentityServer/OpenIddict/ClassifiedAds.CrossCuttingConcerns/ClassifiedAds.CrossCuttingConcerns.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="MapItEasy" Version="1.1.0" />
10+
<PackageReference Include="MapItEasy" Version="1.2.0" />
1111
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
1212
<PrivateAssets>all</PrivateAssets>
1313
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>

src/IdentityServer/OpenIddict/ClassifiedAds.IdentityServer/Dockerfile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@ WORKDIR /ClassifiedAds.IdentityServer
55
COPY ./ClassifiedAds.Application/*.csproj ./ClassifiedAds.Application/
66
COPY ./ClassifiedAds.CrossCuttingConcerns/*.csproj ./ClassifiedAds.CrossCuttingConcerns/
77
COPY ./ClassifiedAds.Domain/*.csproj ./ClassifiedAds.Domain/
8-
COPY ./ClassifiedAds.IdentityServer/*.csproj ./ClassifiedAds.IdentityServer/
98
COPY ./ClassifiedAds.Infrastructure/*.csproj ./ClassifiedAds.Infrastructure/
10-
COPY ./ClassifiedAds.Migrator/*.csproj ./ClassifiedAds.Migrator/
119
COPY ./ClassifiedAds.Persistence/*.csproj ./ClassifiedAds.Persistence/
12-
COPY ./ClassifiedAds.OpenIddict.slnx .
13-
RUN dotnet restore
10+
11+
RUN dotnet restore ./ClassifiedAds.Application/ClassifiedAds.Application.csproj
12+
RUN dotnet restore ./ClassifiedAds.Infrastructure/ClassifiedAds.Infrastructure.csproj
13+
14+
COPY ./ClassifiedAds.IdentityServer/*.csproj ./ClassifiedAds.IdentityServer/
15+
RUN dotnet restore ./ClassifiedAds.IdentityServer/ClassifiedAds.IdentityServer.csproj
1416

1517
# Copy everything else and build
1618
COPY . ./

src/IdentityServer/OpenIddict/ClassifiedAds.Migrator/Dockerfile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@ WORKDIR /ClassifiedAds.IdentityServer
55
COPY ./ClassifiedAds.Application/*.csproj ./ClassifiedAds.Application/
66
COPY ./ClassifiedAds.CrossCuttingConcerns/*.csproj ./ClassifiedAds.CrossCuttingConcerns/
77
COPY ./ClassifiedAds.Domain/*.csproj ./ClassifiedAds.Domain/
8-
COPY ./ClassifiedAds.IdentityServer/*.csproj ./ClassifiedAds.IdentityServer/
98
COPY ./ClassifiedAds.Infrastructure/*.csproj ./ClassifiedAds.Infrastructure/
10-
COPY ./ClassifiedAds.Migrator/*.csproj ./ClassifiedAds.Migrator/
119
COPY ./ClassifiedAds.Persistence/*.csproj ./ClassifiedAds.Persistence/
12-
COPY ./ClassifiedAds.OpenIddict.slnx .
13-
RUN dotnet restore
10+
11+
RUN dotnet restore ./ClassifiedAds.Application/ClassifiedAds.Application.csproj
12+
RUN dotnet restore ./ClassifiedAds.Infrastructure/ClassifiedAds.Infrastructure.csproj
13+
14+
COPY ./ClassifiedAds.Migrator/*.csproj ./ClassifiedAds.Migrator/
15+
RUN dotnet restore ./ClassifiedAds.Migrator/ClassifiedAds.Migrator.csproj
1416

1517
# Copy everything else and build
1618
COPY . ./

0 commit comments

Comments
 (0)