Skip to content

Commit 177227d

Browse files
VCST-388: Update dependencies (#2767)
1 parent dd87537 commit 177227d

File tree

9 files changed

+214
-198
lines changed

9 files changed

+214
-198
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,47 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
5-
<noWarn>1591</noWarn>
6-
<ApplicationIcon />
7-
<OutputType>Library</OutputType>
8-
<IsPackable>True</IsPackable>
9-
<PublishRepositoryUrl>true</PublishRepositoryUrl>
10-
<EmbedUntrackedSources>true</EmbedUntrackedSources>
11-
<IncludeSymbols>true</IncludeSymbols>
12-
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
13-
<StartupObject />
14-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>net8.0</TargetFramework>
5+
<noWarn>1591</noWarn>
6+
<ApplicationIcon />
7+
<OutputType>Library</OutputType>
8+
<IsPackable>True</IsPackable>
9+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
10+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
11+
<IncludeSymbols>true</IncludeSymbols>
12+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
13+
<StartupObject />
14+
</PropertyGroup>
1515

16-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
17-
<NoWarn>1701;1702;1705;1591</NoWarn>
18-
<DocumentationFile>VirtoCommerce.Platform.Core.xml</DocumentationFile>
19-
</PropertyGroup>
16+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
17+
<NoWarn>1701;1702;1705;1591</NoWarn>
18+
<DocumentationFile>VirtoCommerce.Platform.Core.xml</DocumentationFile>
19+
</PropertyGroup>
2020

21-
<ItemGroup>
22-
<Folder Include="Messages\" />
23-
<Folder Include="Specifications\" />
24-
</ItemGroup>
21+
<ItemGroup>
22+
<Folder Include="Messages\" />
23+
<Folder Include="Specifications\" />
24+
</ItemGroup>
2525

26-
<ItemGroup>
27-
<PackageReference Include="Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel" Version="2.22.0" />
28-
<PackageReference Include="Microsoft.AspNetCore.Mvc.Abstractions" Version="2.2.0" />
29-
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="8.0.0" />
30-
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" />
31-
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.0" />
32-
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="8.0.0" />
33-
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0" />
34-
<PackageReference Include="Microsoft.Extensions.Options.DataAnnotations" Version="8.0.0" />
35-
<PackageReference Include="Microsoft.Extensions.Primitives" Version="8.0.0" />
36-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
37-
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
38-
<PackageReference Include="Serilog" Version="3.1.1" />
39-
<PackageReference Include="System.IO.Abstractions" Version="20.0.4" />
40-
</ItemGroup>
26+
<ItemGroup>
27+
<PackageReference Include="Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel" Version="2.22.0" />
28+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Abstractions" Version="2.2.0" />
29+
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="8.0.0" />
30+
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" />
31+
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.0" />
32+
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="8.0.0" />
33+
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0" />
34+
<PackageReference Include="Microsoft.Extensions.Options.DataAnnotations" Version="8.0.0" />
35+
<PackageReference Include="Microsoft.Extensions.Primitives" Version="8.0.0" />
36+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
37+
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
38+
<PackageReference Include="Serilog" Version="3.1.1" />
39+
<PackageReference Include="System.IO.Abstractions" Version="20.0.4" />
40+
</ItemGroup>
41+
42+
<!--Workaround for vulnerable transitive packages-->
43+
<ItemGroup>
44+
<PackageReference Include="System.Text.Encodings.Web" Version="4.5.1" />
45+
</ItemGroup>
4146

4247
</Project>
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,43 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
5-
<noWarn>1591</noWarn>
6-
<ApplicationIcon />
7-
<OutputType>Library</OutputType>
8-
<IsPackable>True</IsPackable>
9-
<StartupObject />
10-
<PublishRepositoryUrl>true</PublishRepositoryUrl>
11-
<EmbedUntrackedSources>true</EmbedUntrackedSources>
12-
<IncludeSymbols>true</IncludeSymbols>
13-
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
14-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>net8.0</TargetFramework>
5+
<noWarn>1591</noWarn>
6+
<ApplicationIcon />
7+
<OutputType>Library</OutputType>
8+
<IsPackable>True</IsPackable>
9+
<StartupObject />
10+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
11+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
12+
<IncludeSymbols>true</IncludeSymbols>
13+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
14+
</PropertyGroup>
1515

16-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
17-
<NoWarn>1701;1702;1705;1591</NoWarn>
18-
<DocumentationFile>VirtoCommerce.Platform.Hangfire.xml</DocumentationFile>
19-
</PropertyGroup>
16+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
17+
<NoWarn>1701;1702;1705;1591</NoWarn>
18+
<DocumentationFile>VirtoCommerce.Platform.Hangfire.xml</DocumentationFile>
19+
</PropertyGroup>
2020

21-
<ItemGroup>
22-
<PackageReference Include="Hangfire" Version="1.8.7" />
23-
<PackageReference Include="Hangfire.AspNetCore" Version="1.8.7" />
24-
<PackageReference Include="Hangfire.Console" Version="1.4.2" />
25-
<PackageReference Include="Hangfire.MemoryStorage" Version="1.8.0" />
26-
<PackageReference Include="Hangfire.MySqlStorage" Version="2.0.3" />
27-
<PackageReference Include="Hangfire.PostgreSql" Version="1.20.4" />
28-
<PackageReference Include="HangFire.SqlServer" Version="1.8.7" />
29-
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.0" />
30-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
31-
</ItemGroup>
21+
<ItemGroup>
22+
<PackageReference Include="Hangfire" Version="1.8.7" />
23+
<PackageReference Include="Hangfire.AspNetCore" Version="1.8.7" />
24+
<PackageReference Include="Hangfire.Console" Version="1.4.2" />
25+
<PackageReference Include="Hangfire.MemoryStorage" Version="1.8.0" />
26+
<PackageReference Include="Hangfire.MySqlStorage" Version="2.0.3" />
27+
<PackageReference Include="Hangfire.PostgreSql" Version="1.20.4" />
28+
<PackageReference Include="HangFire.SqlServer" Version="1.8.7" />
29+
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.0" />
30+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
31+
</ItemGroup>
3232

33-
<ItemGroup>
34-
<ProjectReference Include="..\VirtoCommerce.Platform.Core\VirtoCommerce.Platform.Core.csproj" />
35-
</ItemGroup>
33+
<!--Workaround for vulnerable transitive packages-->
34+
<ItemGroup>
35+
<PackageReference Include="System.Net.Http" Version="4.3.4" />
36+
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" />
37+
</ItemGroup>
38+
39+
<ItemGroup>
40+
<ProjectReference Include="..\VirtoCommerce.Platform.Core\VirtoCommerce.Platform.Core.csproj" />
41+
</ItemGroup>
3642

3743
</Project>
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,38 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3-
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
5-
<noWarn>1591</noWarn>
6-
<OutputType>Library</OutputType>
7-
<IsPackable>True</IsPackable>
8-
<UserSecretsId>ebac378d-6c55-4b03-aa82-57643b6e7a0f</UserSecretsId>
9-
<PublishRepositoryUrl>true</PublishRepositoryUrl>
10-
<EmbedUntrackedSources>true</EmbedUntrackedSources>
11-
<IncludeSymbols>true</IncludeSymbols>
12-
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
13-
</PropertyGroup>
3+
<PropertyGroup>
4+
<TargetFramework>net8.0</TargetFramework>
5+
<noWarn>1591</noWarn>
6+
<OutputType>Library</OutputType>
7+
<IsPackable>True</IsPackable>
8+
<UserSecretsId>ebac378d-6c55-4b03-aa82-57643b6e7a0f</UserSecretsId>
9+
<PublishRepositoryUrl>true</PublishRepositoryUrl>
10+
<EmbedUntrackedSources>true</EmbedUntrackedSources>
11+
<IncludeSymbols>true</IncludeSymbols>
12+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
13+
</PropertyGroup>
1414

15-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
16-
<NoWarn>1701;1702;1705;1591</NoWarn>
17-
<DocumentationFile>VirtoCommerce.Platform.Security.xml</DocumentationFile>
18-
</PropertyGroup>
15+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
16+
<NoWarn>1701;1702;1705;1591</NoWarn>
17+
<DocumentationFile>VirtoCommerce.Platform.Security.xml</DocumentationFile>
18+
</PropertyGroup>
1919

20-
<ItemGroup>
21-
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="8.0.0" />
22-
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.2.0" />
23-
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.0" />
24-
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.0" />
25-
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="8.0.0" />
26-
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
27-
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="4.10.1" />
28-
<ProjectReference Include="..\VirtoCommerce.Platform.Core\VirtoCommerce.Platform.Core.csproj" />
29-
<ProjectReference Include="..\VirtoCommerce.Platform.Data\VirtoCommerce.Platform.Data.csproj" />
30-
</ItemGroup>
20+
<ItemGroup>
21+
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="8.0.0" />
22+
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.2.0" />
23+
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.0" />
24+
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.0" />
25+
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="8.0.0" />
26+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
27+
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="4.10.1" />
28+
<ProjectReference Include="..\VirtoCommerce.Platform.Core\VirtoCommerce.Platform.Core.csproj" />
29+
<ProjectReference Include="..\VirtoCommerce.Platform.Data\VirtoCommerce.Platform.Data.csproj" />
30+
</ItemGroup>
31+
32+
<!--Workaround for vulnerable transitive packages-->
33+
<ItemGroup>
34+
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="6.0.4" />
35+
<PackageReference Include="System.Security.Cryptography.Xml" Version="6.0.1" />
36+
</ItemGroup>
3137

3238
</Project>

0 commit comments

Comments
 (0)