Skip to content
Open
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: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ If you need to use Clean with Umbraco 17 (LTS), use the latest `7.x` release. Th

```powershell
# Ensure we have the version specific Umbraco templates
dotnet new install Umbraco.Templates::13.14.0 --force
dotnet new install Umbraco.Templates::13.16.0 --force

# Create solution/project
dotnet new sln --name "MySolution"
Expand Down
6 changes: 3 additions & 3 deletions template/Clean.Blog/Clean.Blog.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
<!-- Disable compression. E.g. for umbraco backoffice files. These files should be precompressed by node and not let dotnet handle it -->
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Umbraco.Cms" Version="18.0.1" />
<PackageReference Include="Umbraco.Cms.DevelopmentMode.Backoffice" Version="18.0.1" />
<PackageReference Include="uSync" Version="18.0.0" />
<PackageReference Include="Umbraco.Cms" Version="18.1.0-rc2" />
<PackageReference Include="Umbraco.Cms.DevelopmentMode.Backoffice" Version="18.1.0-rc2" />
<PackageReference Include="uSync" Version="18.0.3" />
<ProjectReference Include="..\Clean.Core\Clean.Core.csproj" />
<ProjectReference Include="..\Clean.Headless\Clean.Headless.csproj" />
<ProjectReference Include="..\Clean.Models\Clean.Models.csproj" />
Expand Down
17,212 changes: 17,209 additions & 3 deletions template/Clean.Blog/umbraco-package-schema.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion template/Clean.Core/Clean.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Umbraco.Cms.Web.Website" Version="18.0.1" />
<PackageReference Include="Umbraco.Cms.Web.Website" Version="18.1.0-rc2" />
</ItemGroup>
<ItemGroup>
<None Include="../images/logo.png" Pack="true" PackPath="\" />
Expand Down
4 changes: 2 additions & 2 deletions template/Clean.Headless/Clean.Headless.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Umbraco.Cms.Web.Website" Version="18.0.1" />
<PackageReference Include="Umbraco.Cms.Api.Common" Version="18.0.1" />
<PackageReference Include="Umbraco.Cms.Web.Website" Version="18.1.0-rc2" />
<PackageReference Include="Umbraco.Cms.Api.Common" Version="18.1.0-rc2" />
</ItemGroup>
<ItemGroup>
<Folder Include="Revalidate\" />
Expand Down
2 changes: 1 addition & 1 deletion template/Clean.Models/Clean.Models.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
<TargetFramework>net10.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Umbraco.Cms.Web.Website" Version="18.0.1" />
<PackageReference Include="Umbraco.Cms.Web.Website" Version="18.1.0-rc2" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion template/Clean/Clean.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
<EmbeddedResource Include="Migrations\ElementLibrary\*.config" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Umbraco.Cms.Web.Website" Version="18.0.1" />
<PackageReference Include="Umbraco.Cms.Web.Website" Version="18.1.0-rc2" />
<PackageReference Include="Clean.Core" Version="8.0.1" />
<PackageReference Include="Clean.Headless" Version="8.0.1" />
</ItemGroup>
Expand Down
Loading