Skip to content

Commit

Permalink
Upgrade for support of Umbraco 15. (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
AndyButland authored Dec 1, 2024
1 parent 896edfb commit 4b25809
Show file tree
Hide file tree
Showing 30 changed files with 1,428 additions and 566 deletions.
10 changes: 5 additions & 5 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<Project>
<PropertyGroup>
<Version>4.0.0</Version>
<AssemblyVersion>4.0.0</AssemblyVersion>
<InformationalVersion>4.0.0</InformationalVersion>
<FileVersion>4.0.0</FileVersion>
<Version>5.0.0</Version>
<AssemblyVersion>5.0.0</AssemblyVersion>
<InformationalVersion>5.0.0</InformationalVersion>
<FileVersion>5.0.0</FileVersion>
<LangVersion Condition="'$(LangVersion)' == ''">12.0</LangVersion>
<NeutralLanguage>en-US</NeutralLanguage>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<Authors>Andy Butland</Authors>
<Copyright>2021-24 Andy Butland</Copyright>
<PackageProjectUrl>https://github.com/AndyButland/UmbracoPersonalisationGroupsCore/</PackageProjectUrl>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,16 @@
<PropertyGroup>
<AssemblyName>Our.Umbraco.PersonalisationGroups.Tests</AssemblyName>
<RootNamespace>Our.Umbraco.PersonalisationGroups.Tests</RootNamespace>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<IsPackable>false</IsPackable>
<Nullable>enable</Nullable>
<WarningsAsErrors>nullable</WarningsAsErrors>
</PropertyGroup>

<ItemGroup>
<Folder Include="Criteria\" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.5.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.16.1" />
<PackageReference Include="Umbraco.Cms.Tests" Version="14.0.0" />
<PackageReference Include="Umbraco.Cms.Tests" Version="15.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion PersonalisationGroups/Client/config.outputPath.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const outputPath = 'Debug' !== 'Release' ? '../wwwroot' : '../obj/Debug/net8.0/clientassets'
export const outputPath = 'Debug' !== 'Release' ? '../wwwroot' : '../obj/Debug/net9.0/clientassets'
Loading

0 comments on commit 4b25809

Please sign in to comment.