Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project>
<!-- These properties will be shared for all projects -->
<PropertyGroup>
<VersionPrefix>3.818.0</VersionPrefix>
<VersionPrefix>3.1000.0</VersionPrefix>
<VersionSuffix>
</VersionSuffix>
<VersionSuffix Condition=" '$(VersionSuffix)' != '' AND '$(BuildNumber)' != '' ">$(VersionSuffix)-$(BuildNumber)</VersionSuffix>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>1591</NoWarn>
<IsPackable>True</IsPackable>
Expand All @@ -14,9 +14,9 @@
<SonarQubeTestProject>false</SonarQubeTestProject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
<PackageReference Include="VirtoCommerce.CoreModule.Core" Version="3.824.0" />
<PackageReference Include="VirtoCommerce.Platform.Core" Version="3.917.0" />
<PackageReference Include="VirtoCommerce.SearchModule.Core" Version="3.821.0" />

<PackageReference Include="VirtoCommerce.CoreModule.Core" Version="3.1000.0" />
<PackageReference Include="VirtoCommerce.Platform.Core" Version="3.1002.0" />
<PackageReference Include="VirtoCommerce.SearchModule.Core" Version="3.1000.0" />
</ItemGroup>
</Project>
4 changes: 2 additions & 2 deletions src/VirtoCommerce.InventoryModule.Data.MySql/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

## Install CLI tools for Entity Framework Core
```cmd
dotnet tool install --global dotnet-ef --version 8.0.0
dotnet tool install --global dotnet-ef --version 10.0.1
```

or update

```cmd
dotnet tool update --global dotnet-ef --version 8.0.0
dotnet tool update --global dotnet-ef --version 10.0.1
```

## Add Migration
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<NoWarn>NU1608</NoWarn>
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suppressed dependency conflict warnings hide incompatibilities

Medium Severity

Adding NU1608 to NoWarn in multiple projects suppresses package constraint conflict diagnostics instead of resolving them. That allows restore/build to proceed with potentially incompatible dependency graphs, which can surface later as runtime behavior changes, EF tooling failures, or unstable test execution after the .NET 10 upgrade.

Additional Locations (2)

Fix in Cursor Fix in Web

</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="[8.0.11,9)">
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<IncludeAssets>runtime; build; native; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="VirtoCommerce.Platform.Data.MySql" Version="3.917.0" />

<PackageReference Include="VirtoCommerce.Platform.Data.MySql" Version="3.1002.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\VirtoCommerce.InventoryModule.Data\VirtoCommerce.InventoryModule.Data.csproj" />
Expand Down
4 changes: 2 additions & 2 deletions src/VirtoCommerce.InventoryModule.Data.PostgreSql/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

## Install CLI tools for Entity Framework Core
```cmd
dotnet tool install --global dotnet-ef --version 8.0.0
dotnet tool install --global dotnet-ef --version 10.0.1
```

or update

```cmd
dotnet tool update --global dotnet-ef --version 8.0.0
dotnet tool update --global dotnet-ef --version 10.0.1
```

## Add Migration
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="[8.0.11,9)">
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<IncludeAssets>runtime; build; native; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="VirtoCommerce.Platform.Data.PostgreSql" Version="3.917.0" />

<PackageReference Include="VirtoCommerce.Platform.Data.PostgreSql" Version="3.1002.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\VirtoCommerce.InventoryModule.Data\VirtoCommerce.InventoryModule.Data.csproj" />
Expand Down
4 changes: 2 additions & 2 deletions src/VirtoCommerce.InventoryModule.Data.SqlServer/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@

## Install CLI tools for Entity Framework Core
```cmd
dotnet tool install --global dotnet-ef --version 8.0.0
dotnet tool install --global dotnet-ef --version 10.0.1
```

or update

```cmd
dotnet tool update --global dotnet-ef --version 8.0.0
dotnet tool update --global dotnet-ef --version 10.0.1
```

## Add Migration
Expand Down
Original file line number Diff line number Diff line change
@@ -1,19 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="[8.0.11,9)">
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<IncludeAssets>runtime; build; native; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="VirtoCommerce.Platform.Data.SqlServer" Version="3.917.0" />

<PackageReference Include="VirtoCommerce.Platform.Data.SqlServer" Version="3.1002.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\VirtoCommerce.InventoryModule.Data\VirtoCommerce.InventoryModule.Data.csproj" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<noWarn>1591</noWarn>
<IsPackable>True</IsPackable>
Expand All @@ -14,9 +14,9 @@
<SonarQubeTestProject>false</SonarQubeTestProject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
<PackageReference Include="VirtoCommerce.Platform.Data" Version="3.917.0" />
<PackageReference Include="VirtoCommerce.Platform.Hangfire" Version="3.917.0" />

<PackageReference Include="VirtoCommerce.Platform.Data" Version="3.1002.0" />
<PackageReference Include="VirtoCommerce.Platform.Hangfire" Version="3.1002.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\VirtoCommerce.InventoryModule.Core\VirtoCommerce.InventoryModule.Core.csproj" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<noWarn>1591</noWarn>
<noWarn>1591;NU1608</noWarn>
<OutputType>Library</OutputType>
<IsPackable>False</IsPackable>
<!--This line is necessary to copy all dependencies in the bin folder-->
Expand Down
12 changes: 6 additions & 6 deletions src/VirtoCommerce.InventoryModule.Web/module.manifest
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<module xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<id>VirtoCommerce.Inventory</id>
<version>3.818.0</version>
<version>3.1000.0</version>
<version-tag />

<platformVersion>3.917.0</platformVersion>
<platformVersion>3.1002.0</platformVersion>
<dependencies>
<dependency id="VirtoCommerce.Catalog" version="3.904.0" />
<dependency id="VirtoCommerce.Core" version="3.824.0" />
<dependency id="VirtoCommerce.Search" version="3.821.0" />
<dependency id="VirtoCommerce.Catalog" version="3.1000.0" />
<dependency id="VirtoCommerce.Core" version="3.1000.0" />
<dependency id="VirtoCommerce.Search" version="3.1000.0" />
</dependencies>

<title>Inventory</title>
Expand All @@ -22,7 +22,7 @@
<projectUrl>https://github.com/VirtoCommerce/vc-module-inventory</projectUrl>
<iconUrl>Modules/$(VirtoCommerce.Inventory)/Content/logo.png</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<copyright>Copyright © 2011–2025 Virto Commerce. All rights reserved</copyright>
<copyright>Copyright © 2011–2026 Virto Commerce. All rights reserved</copyright>
<tags>order system</tags>
<assemblyFile>VirtoCommerce.InventoryModule.Web.dll</assemblyFile>
<moduleType>VirtoCommerce.InventoryModule.Web.Module, VirtoCommerce.InventoryModule.Web</moduleType>
Expand Down
Loading
Loading