Skip to content

Commit

Permalink
Updated package to support Umbraco 13 and .net8
Browse files Browse the repository at this point in the history
  • Loading branch information
chase-burandt committed Jan 25, 2024
1 parent 527e239 commit ea8cddf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Blend.Sitemap/Blend.Sitemap.csproj
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<ContentTargetFolders>.</ContentTargetFolders>
<Title>Blend Sitemap</Title>
<Description>Dynamic route for /sitemap.xml</Description>
<Product>Sitemap.xml for Umbraco 11</Product>
<RootNamespace>$(MSBuildProjectName.Replace(" ", "_"))</RootNamespace>
<Version>11.1.0</Version>
<Version>13.0.0</Version>
<Authors>Chase Burandt</Authors>
<Company>Blend Interactive</Company>
<Copyright>Copyright (c) 2023 Blend Interactive</Copyright>
Expand All @@ -24,7 +24,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Umbraco.Cms.Web.Website" Version="11.0.0" />
<PackageReference Include="Umbraco.Cms.Web.Website" Version="13.0.0" />
<None Include="..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>

Expand Down
4 changes: 2 additions & 2 deletions SchemaGenerator/SchemaGenerator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
Expand All @@ -26,6 +26,6 @@
</Target>

<Target Name="BuildSchema" AfterTargets="PostBuildEvent">
<Exec Command=".\bin\Release\net7.0\SchemaGenerator.exe" />
<Exec Command=".\bin\Release\net8.0\SchemaGenerator.exe" />
</Target>
</Project>

0 comments on commit ea8cddf

Please sign in to comment.