Skip to content

Commit ee6f29d

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

File tree

25 files changed

+240
-10
lines changed

25 files changed

+240
-10
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>
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>
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.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.OpenIddict.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>
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>
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.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/OpenIddict/ClassifiedAds.Persistence/ClassifiedAds.Persistence.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="EntityFrameworkCore.SqlServer.SimpleBulks" Version="8.1.0" />
10+
<PackageReference Include="EntityFrameworkCore.SqlServer.SimpleBulks" Version="8.2.0" />
1111
<PackageReference Include="Microsoft.AspNetCore.DataProtection.EntityFrameworkCore" Version="9.0.1" />
1212
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.3.0" />
1313
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.1" />

0 commit comments

Comments
 (0)