-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathUmbraco.Community.BlockPreview.csproj
More file actions
60 lines (51 loc) · 2.32 KB
/
Copy pathUmbraco.Community.BlockPreview.csproj
File metadata and controls
60 lines (51 loc) · 2.32 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<StaticWebAssetBasePath>/</StaticWebAssetBasePath>
<ContentTargetFolders>.</ContentTargetFolders>
<RootNamespace>Umbraco.Community.BlockPreview</RootNamespace>
<Product>Umbraco.Community.BlockPreview</Product>
<PackageId>Umbraco.Community.BlockPreview</PackageId>
<Title>BlockPreview</Title>
<Description>Easy to use rich HTML backoffice previews for the Umbraco Block List and Block Grid editors</Description>
<PackageTags>umbraco plugin package block list grid umbraco-marketplace</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<VersionPrefix>4.0.3</VersionPrefix>
<VersionSuffix></VersionSuffix>
<Authors>Rick Butterfield, Dave Woestenborghs, Matthew Wise</Authors>
<Copyright>$([System.DateTime]::UtcNow.ToString(`yyyy`)) © Rick Butterfield</Copyright>
<PackageProjectUrl>https://github.com/rickbutterfield/BlockPreview</PackageProjectUrl>
<RepositoryUrl>https://github.com/rickbutterfield/BlockPreview</RepositoryUrl>
<PackageIcon>icon.png</PackageIcon>
<RepositoryType>git</RepositoryType>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Umbraco.Cms.Core" Version="[16.2.0, 17.0.0)" />
<PackageReference Include="Umbraco.Cms.Web.Common" Version="[16.2.0, 17.0.0)" />
<PackageReference Include="Umbraco.Cms.Web.Website" Version="[16.0.0, 17.0.0)" />
<PackageReference Include="Umbraco.Cms.Api.Common" Version="[16.2.0, 17.0.0)" />
<PackageReference Include="Umbraco.Cms.Api.Management" Version="[16.2.0, 17.0.0)" />
</ItemGroup>
<ItemGroup>
<Content Include="buildTransitive\**" PackagePath="buildTransitive" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\.github\assets\icon.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\.github\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Umbraco.Community.BlockPreview.UI\Umbraco.Community.BlockPreview.UI.esproj">
<ReferenceOutputAssembly>False</ReferenceOutputAssembly>
</ProjectReference>
</ItemGroup>
</Project>