-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathUmbraco.Cms.Integrations.PIM.Inriver.csproj
68 lines (58 loc) · 2.38 KB
/
Umbraco.Cms.Integrations.PIM.Inriver.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<WarningsAsErrors>Nullable</WarningsAsErrors>
</PropertyGroup>
<PropertyGroup>
<PackageId>Umbraco.Cms.Integrations.PIM.Inriver</PackageId>
<Title>Umbraco CMS Integrations: PIM - Inriver</Title>
<Description>An extension for Umbraco CMS providing a picker for Inriver entities.</Description>
<PackageIconUrl></PackageIconUrl>
<PackageProjectUrl>https://github.com/umbraco/Umbraco.Cms.Integrations/tree/main/src/Umbraco.Cms.Integrations.PIM.Inriver</PackageProjectUrl>
<RepositoryUrl>https://github.com/umbraco/Umbraco.Cms.Integrations</RepositoryUrl>
<Version>1.0.3</Version>
<Authors>Umbraco HQ</Authors>
<Company>Umbraco</Company>
<PackageTags>Umbraco;Umbraco-Marketplace</PackageTags>
<PackageIcon>inriver.png</PackageIcon>
<PackageReadmeFile>readme.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="Umbraco.Cms.Web.Website" version="[10.3.0,11)" />
<PackageReference Include="Umbraco.Cms.Web.BackOffice" version="[10.3.0,11)" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
<PackageReference Include="Umbraco.Cms.Web.Website" version="[11.0.0,13)" />
<PackageReference Include="Umbraco.Cms.Web.BackOffice" version="[11.0.0,13)" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Umbraco.Cms.Web.Website" version="[13.0.0,14)" />
<PackageReference Include="Umbraco.Cms.Web.BackOffice" version="[13.0.0,14)" />
</ItemGroup>
<ItemGroup>
<Content Include="App_Plugins\UmbracoCms.Integrations\PIM\Inriver\**\*.*">
<Pack>true</Pack>
<PackagePath>App_Plugins\UmbracoCms.Integrations\PIM\Inriver\</PackagePath>
</Content>
<None Include="build\**\*.*">
<Pack>True</Pack>
<PackagePath>buildTransitive</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<Content Include="App_Plugins\**\*.*">
<ExcludeFromSingleFile>true</ExcludeFromSingleFile>
<CopyToPublishDirectory>Always</CopyToPublishDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Content Include="inriver.png">
<Pack>true</Pack>
<PackagePath>\</PackagePath>
</Content>
</ItemGroup>
<ItemGroup>
<None Include="docs\readme.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>