-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Update to .NET 8
- Loading branch information
Showing
8 changed files
with
215 additions
and
221 deletions.
There are no files selected for viewing
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,8 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?><Project> | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project> | ||
<!-- These properties will be shared for all projects --> | ||
<PropertyGroup> | ||
<VersionPrefix>3.401.0</VersionPrefix> | ||
<VersionPrefix>3.800.0</VersionPrefix> | ||
<VersionSuffix></VersionSuffix> | ||
<VersionSuffix Condition=" '$(VersionSuffix)' != '' AND '$(BuildNumber)' != '' ">$(VersionSuffix)-$(BuildNumber)</VersionSuffix> | ||
</PropertyGroup> | ||
</Project> | ||
</Project> |
21 changes: 8 additions & 13 deletions
21
...toCommerce.PriceExportImportModule.Core/VirtoCommerce.PriceExportImportModule.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,24 +1,19 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<TargetFramework>net8.0</TargetFramework> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<!-- Project is not a test project --> | ||
<SonarQubeTestProject>false</SonarQubeTestProject> | ||
<!-- Project is not a test project --> | ||
<SonarQubeTestProject>false</SonarQubeTestProject> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="CsvHelper" Version="27.1.1" /> | ||
<PackageReference Include="VirtoCommerce.Platform.Core" Version="3.400.0" /> | ||
<PackageReference Include="VirtoCommerce.PricingModule.Core" Version="3.400.0" /> | ||
<PackageReference Include="VirtoCommerce.PricingModule.Data" Version="3.400.0" /> | ||
<PackageReference Include="CsvHelper" Version="30.0.1" /> | ||
<PackageReference Include="VirtoCommerce.Platform.Core" Version="3.800.0" /> | ||
<PackageReference Include="VirtoCommerce.PricingModule.Core" Version="3.800.0" /> | ||
<PackageReference Include="VirtoCommerce.PricingModule.Data" Version="3.800.0" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Folder Include="Events\" /> | ||
<Folder Include="Notifications\" /> | ||
</ItemGroup> | ||
|
||
</Project> | ||
</Project> |
28 changes: 11 additions & 17 deletions
28
...toCommerce.PriceExportImportModule.Data/VirtoCommerce.PriceExportImportModule.Data.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,33 +1,27 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net6.0</TargetFramework> | ||
<TargetFramework>net8.0</TargetFramework> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<!-- Project is not a test project --> | ||
<SonarQubeTestProject>false</SonarQubeTestProject> | ||
<!-- Project is not a test project --> | ||
<SonarQubeTestProject>false</SonarQubeTestProject> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\VirtoCommerce.PriceExportImportModule.Core\VirtoCommerce.PriceExportImportModule.Core.csproj" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Folder Include="Caching\" /> | ||
<Folder Include="ExportImport\" /> | ||
<Folder Include="Handlers\" /> | ||
<Folder Include="Repositories\" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="CsvHelper" Version="27.1.1" /> | ||
<PackageReference Include="FluentValidation" Version="10.3.4" /> | ||
<PackageReference Include="VirtoCommerce.AssetsModule.Core" Version="3.200.0" /> | ||
<PackageReference Include="VirtoCommerce.CatalogModule.Core" Version="3.401.0" /> | ||
<PackageReference Include="VirtoCommerce.PricingModule.Core" Version="3.400.0" /> | ||
<PackageReference Include="VirtoCommerce.Platform.Data" Version="3.400.0" /> | ||
<PackageReference Include="VirtoCommerce.Platform.Hangfire" Version="3.400.0" /> | ||
<PackageReference Include="CsvHelper" Version="30.0.1" /> | ||
<PackageReference Include="FluentValidation" Version="11.8.1" /> | ||
<PackageReference Include="VirtoCommerce.AssetsModule.Core" Version="3.800.0" /> | ||
<PackageReference Include="VirtoCommerce.CatalogModule.Core" Version="3.800.0" /> | ||
<PackageReference Include="VirtoCommerce.PricingModule.Core" Version="3.800.0" /> | ||
<PackageReference Include="VirtoCommerce.Platform.Data" Version="3.800.0" /> | ||
<PackageReference Include="VirtoCommerce.Platform.Hangfire" Version="3.800.0" /> | ||
</ItemGroup> | ||
|
||
</Project> | ||
</Project> |
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
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
Oops, something went wrong.