-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathGeta.NotFoundHandler.Optimizely.csproj
More file actions
57 lines (49 loc) · 2.28 KB
/
Copy pathGeta.NotFoundHandler.Optimizely.csproj
File metadata and controls
57 lines (49 loc) · 2.28 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
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
<PackageId>Geta.NotFoundHandler.Optimizely</PackageId>
<Title>NotFound handler Admin UI integration Optimizely</Title>
<Authors>Geta Digital</Authors>
<Company>Geta Digital</Company>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Geta/geta-notfoundhandler</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<PackageIconUrl>https://cdn.geta.no/opensource/icons/Geta-logo-3.png</PackageIconUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Description>This library contains a NotFound handler Admin user interface integration in an Optimizely project.</Description>
<PackageReleaseNotes>https://github.com/Geta/geta-notfoundhandler/blob/master/CHANGELOG.md</PackageReleaseNotes>
<PackageTags>404 NotFound 404Error Handler Geta Redirect</PackageTags>
<RepositoryUrl>https://github.com/Geta/geta-notfoundhandler.git</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="EPiServer.CMS.UI.Core" Version="13.1.0" />
<PackageReference Include="MailKit" Version="4.16.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Geta.NotFoundHandler.Admin\Geta.NotFoundHandler.Admin.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\images\icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<Content Remove="module.config" />
<None Include="module.config">
<Pack>true</Pack>
<PackageCopyToOutput>true</PackageCopyToOutput>
<BuildAction>None</BuildAction>
<PackagePath>contentFiles\any\any\modules\_protected\Geta.NotFoundHandler.Optimizely</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<Content Include=".\msbuild\CopyModule.targets">
<Pack>true</Pack>
<PackageCopyToOutput>true</PackageCopyToOutput>
<BuildAction>None</BuildAction>
<PackagePath>build\net6.0\$(MSBuildProjectName).targets;buildTransitive\net6.0\$(MSBuildProjectName).targets</PackagePath>
</Content>
</ItemGroup>
</Project>