-
Notifications
You must be signed in to change notification settings - Fork 846
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
VCST-388: Update dependencies (#2767)
- Loading branch information
1 parent
dd87537
commit 177227d
Showing
9 changed files
with
214 additions
and
198 deletions.
There are no files selected for viewing
75 changes: 40 additions & 35 deletions
75
src/VirtoCommerce.Platform.Core/VirtoCommerce.Platform.Core.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,47 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<noWarn>1591</noWarn> | ||
<ApplicationIcon /> | ||
<OutputType>Library</OutputType> | ||
<IsPackable>True</IsPackable> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
<StartupObject /> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<noWarn>1591</noWarn> | ||
<ApplicationIcon /> | ||
<OutputType>Library</OutputType> | ||
<IsPackable>True</IsPackable> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
<StartupObject /> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<NoWarn>1701;1702;1705;1591</NoWarn> | ||
<DocumentationFile>VirtoCommerce.Platform.Core.xml</DocumentationFile> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<NoWarn>1701;1702;1705;1591</NoWarn> | ||
<DocumentationFile>VirtoCommerce.Platform.Core.xml</DocumentationFile> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Folder Include="Messages\" /> | ||
<Folder Include="Specifications\" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Folder Include="Messages\" /> | ||
<Folder Include="Specifications\" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel" Version="2.22.0" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Mvc.Abstractions" Version="2.2.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Options.DataAnnotations" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Primitives" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> | ||
<PackageReference Include="Serilog" Version="3.1.1" /> | ||
<PackageReference Include="System.IO.Abstractions" Version="20.0.4" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel" Version="2.22.0" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Mvc.Abstractions" Version="2.2.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Options.DataAnnotations" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Primitives" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> | ||
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" /> | ||
<PackageReference Include="Serilog" Version="3.1.1" /> | ||
<PackageReference Include="System.IO.Abstractions" Version="20.0.4" /> | ||
</ItemGroup> | ||
|
||
<!--Workaround for vulnerable transitive packages--> | ||
<ItemGroup> | ||
<PackageReference Include="System.Text.Encodings.Web" Version="4.5.1" /> | ||
</ItemGroup> | ||
|
||
</Project> |
66 changes: 36 additions & 30 deletions
66
src/VirtoCommerce.Platform.Hangfire/VirtoCommerce.Platform.Hangfire.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,43 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<noWarn>1591</noWarn> | ||
<ApplicationIcon /> | ||
<OutputType>Library</OutputType> | ||
<IsPackable>True</IsPackable> | ||
<StartupObject /> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<noWarn>1591</noWarn> | ||
<ApplicationIcon /> | ||
<OutputType>Library</OutputType> | ||
<IsPackable>True</IsPackable> | ||
<StartupObject /> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<NoWarn>1701;1702;1705;1591</NoWarn> | ||
<DocumentationFile>VirtoCommerce.Platform.Hangfire.xml</DocumentationFile> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<NoWarn>1701;1702;1705;1591</NoWarn> | ||
<DocumentationFile>VirtoCommerce.Platform.Hangfire.xml</DocumentationFile> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Hangfire" Version="1.8.7" /> | ||
<PackageReference Include="Hangfire.AspNetCore" Version="1.8.7" /> | ||
<PackageReference Include="Hangfire.Console" Version="1.4.2" /> | ||
<PackageReference Include="Hangfire.MemoryStorage" Version="1.8.0" /> | ||
<PackageReference Include="Hangfire.MySqlStorage" Version="2.0.3" /> | ||
<PackageReference Include="Hangfire.PostgreSql" Version="1.20.4" /> | ||
<PackageReference Include="HangFire.SqlServer" Version="1.8.7" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Hangfire" Version="1.8.7" /> | ||
<PackageReference Include="Hangfire.AspNetCore" Version="1.8.7" /> | ||
<PackageReference Include="Hangfire.Console" Version="1.4.2" /> | ||
<PackageReference Include="Hangfire.MemoryStorage" Version="1.8.0" /> | ||
<PackageReference Include="Hangfire.MySqlStorage" Version="2.0.3" /> | ||
<PackageReference Include="Hangfire.PostgreSql" Version="1.20.4" /> | ||
<PackageReference Include="HangFire.SqlServer" Version="1.8.7" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\VirtoCommerce.Platform.Core\VirtoCommerce.Platform.Core.csproj" /> | ||
</ItemGroup> | ||
<!--Workaround for vulnerable transitive packages--> | ||
<ItemGroup> | ||
<PackageReference Include="System.Net.Http" Version="4.3.4" /> | ||
<PackageReference Include="System.Text.RegularExpressions" Version="4.3.1" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\VirtoCommerce.Platform.Core\VirtoCommerce.Platform.Core.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
58 changes: 32 additions & 26 deletions
58
src/VirtoCommerce.Platform.Security/VirtoCommerce.Platform.Security.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,38 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<noWarn>1591</noWarn> | ||
<OutputType>Library</OutputType> | ||
<IsPackable>True</IsPackable> | ||
<UserSecretsId>ebac378d-6c55-4b03-aa82-57643b6e7a0f</UserSecretsId> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<noWarn>1591</noWarn> | ||
<OutputType>Library</OutputType> | ||
<IsPackable>True</IsPackable> | ||
<UserSecretsId>ebac378d-6c55-4b03-aa82-57643b6e7a0f</UserSecretsId> | ||
<PublishRepositoryUrl>true</PublishRepositoryUrl> | ||
<EmbedUntrackedSources>true</EmbedUntrackedSources> | ||
<IncludeSymbols>true</IncludeSymbols> | ||
<SymbolPackageFormat>snupkg</SymbolPackageFormat> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<NoWarn>1701;1702;1705;1591</NoWarn> | ||
<DocumentationFile>VirtoCommerce.Platform.Security.xml</DocumentationFile> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<NoWarn>1701;1702;1705;1591</NoWarn> | ||
<DocumentationFile>VirtoCommerce.Platform.Security.xml</DocumentationFile> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.2.0" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> | ||
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="4.10.1" /> | ||
<ProjectReference Include="..\VirtoCommerce.Platform.Core\VirtoCommerce.Platform.Core.csproj" /> | ||
<ProjectReference Include="..\VirtoCommerce.Platform.Data\VirtoCommerce.Platform.Data.csproj" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.2.0" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" /> | ||
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="4.10.1" /> | ||
<ProjectReference Include="..\VirtoCommerce.Platform.Core\VirtoCommerce.Platform.Core.csproj" /> | ||
<ProjectReference Include="..\VirtoCommerce.Platform.Data\VirtoCommerce.Platform.Data.csproj" /> | ||
</ItemGroup> | ||
|
||
<!--Workaround for vulnerable transitive packages--> | ||
<ItemGroup> | ||
<PackageReference Include="System.Security.Cryptography.Pkcs" Version="6.0.4" /> | ||
<PackageReference Include="System.Security.Cryptography.Xml" Version="6.0.1" /> | ||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.