-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathUmbracoOutputCache.csproj
46 lines (43 loc) · 1.81 KB
/
UmbracoOutputCache.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<ContentTargetFolders>.</ContentTargetFolders>
<Product>UmbracoOutputCache</Product>
<PackageId>UmbracoOutputCache</PackageId>
<PackageProjectUrl>https://github.com/prmeyn/UmbracoOutputCache/</PackageProjectUrl>
<Description>
This package caches all your server side code like the output of your razor templates so that it is not excecuted over and over again as you get more concurrent visitors but will be cached for the duration you set, by default this package sets it to 10 seconds.
This should help improve the performance of your Umbraco server bringing down CPU utilization etc.
</Description>
<PackageTags>umbraco plugin package umbraco-marketplace</PackageTags>
</PropertyGroup>
<PropertyGroup>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<None Include="LICENSE" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Umbraco.Cms.Web.Website" Version="14.2.0" />
</ItemGroup>
<ItemGroup>
<Content Include="App_Plugins\UmbracoOutputCache\**" ExcludeFromSingleFile="true" CopyToPublishDirectory="Always" />
<None Include="buildTransitive\**" Pack="true" PackagePath="buildTransitive" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>
<PropertyGroup>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<PropertyGroup>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<None Include="images\icon.png" Pack="true" PackagePath="" />
</ItemGroup>
</Project>