Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -479,3 +479,5 @@ src/**/packages.lock.json
tests/**/packages.lock.json
**/appsettings-schema.**
**/umbraco-package-schema.json
nul
.idea
6 changes: 3 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<Company>Umbraco HQ</Company>
<Authors>Umbraco</Authors>
<Copyright>Copyright © Umbraco $([System.DateTime]::Today.ToString('yyyy'))</Copyright>
Expand Down Expand Up @@ -32,8 +32,8 @@

<!-- Package validation -->
<PropertyGroup>
<EnablePackageValidation>true</EnablePackageValidation>
<PackageValidationBaselineVersion>16.0.0</PackageValidationBaselineVersion>
<EnablePackageValidation>false</EnablePackageValidation>
<PackageValidationBaselineVersion>17.0.0</PackageValidationBaselineVersion>
<EnableStrictModeForCompatibleFrameworksInPackage>true</EnableStrictModeForCompatibleFrameworksInPackage>
<EnableStrictModeForCompatibleTfms>true</EnableStrictModeForCompatibleTfms>
</PropertyGroup>
Expand Down
28 changes: 13 additions & 15 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
@@ -1,27 +1,25 @@
<Project>
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
</PropertyGroup>
<ItemGroup>
<GlobalPackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" />
<GlobalPackageReference Include="Nerdbank.GitVersioning" Version="3.6.133" />
<GlobalPackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" />
<GlobalPackageReference Include="Nerdbank.GitVersioning" Version="3.9.50" />
<GlobalPackageReference Include="StyleCop.Analyzers" Version="1.1.118" />
<GlobalPackageReference Include="Umbraco.GitVersioning.Extensions" Version="0.2.0" />
</ItemGroup>
<ItemGroup>
<PackageVersion Include="AutoMapper" Version="[12.0.1, 13)" />
<PackageVersion Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="[12.0.1, 13)" />
<PackageVersion Include="FluentValidation" Version="11.9.0" />
<PackageVersion Include="Microsoft.AspNet.WebApi.Client" Version="[6.0.0, 7.0)" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageVersion Include="Umbraco.Cms" Version="[16.0.0, 16.999.999)" />
<PackageVersion Include="Umbraco.Cms.Web.Website" Version="[16.0.0, 16.999.999)" />
<PackageVersion Include="Umbraco.Cms.Web.BackOffice" Version="[16.0.0, 16.999.999)" />
<PackageVersion Include="Umbraco.Commerce" Version="[16.0.0, 16.999.999)" />
<PackageVersion Include="coverlet.collector" Version="6.0.0" />
<PackageVersion Include="xunit" Version="2.6.6" />
<PackageVersion Include="xunit.runner.visualstudio" Version="2.5.6" />
<PackageVersion Include="FluentValidation" Version="12.1.0" />
<PackageVersion Include="Microsoft.AspNet.WebApi.Client" Version="[6.0.0, 6.999.999)" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
<PackageVersion Include="Umbraco.Cms" Version="[17.0.0, 17.999.999)" />
<PackageVersion Include="Umbraco.Cms.Web.Website" Version="[17.0.0, 17.999.999)" />
<PackageVersion Include="Umbraco.Cms.Web.BackOffice" Version="[17.0.0, 17.999.999)" />
<PackageVersion Include="Umbraco.Commerce" Version="[17.0.0, 17.999.999)" />
<PackageVersion Include="coverlet.collector" Version="6.0.4" />
<PackageVersion Include="xunit" Version="2.9.3" />
<PackageVersion Include="xunit.runner.visualstudio" Version="3.1.5" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ parameters:
default: false

variables:
nodeVersion: 18.x
nodeVersion: 22.x
solution: Umbraco.Commerce.ProductFeeds.sln
buildConfiguration: Release
DOTNET_NOLOGO: true
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "9.0.100",
"version": "10.0.100",
"rollForward": "latestFeature"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Title>Umbraco Commerce Product Feeds Client</Title>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<Description>Contains frontend code of the project</Description>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
Expand Down
2 changes: 2 additions & 0 deletions src/Umbraco.Commerce.ProductFeeds.Client/frontend/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
@umbraco-commerce:registry=https://www.myget.org/F/umbraconightly/npm/
@umbraco-cms:registry=https://www.myget.org/F/umbracoprereleases/npm/
Loading
Loading