-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLombiq.SetupExtensions.csproj
38 lines (31 loc) · 1.4 KB
/
Lombiq.SetupExtensions.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<DefaultItemExcludes>$(DefaultItemExcludes);.git*;node_modules\**</DefaultItemExcludes>
</PropertyGroup>
<PropertyGroup>
<Title>Lombiq Setup Extensions for Orchard Core</Title>
<Authors>Lombiq Technologies</Authors>
<Copyright>Copyright © 2020, Lombiq Technologies Ltd.</Copyright>
<Description>Lombiq Setup Extensions for Orchard Core: Extensions for setting up an Orchard Core application. See the project website for detailed documentation.</Description>
<PackageIcon>NuGetIcon.png</PackageIcon>
<PackageTags>OrchardCore;Lombiq;AspNetCore;Setup</PackageTags>
<RepositoryUrl>https://github.com/Lombiq/Setup-Extensions</RepositoryUrl>
<PackageProjectUrl>https://github.com/Lombiq/Setup-Extensions</PackageProjectUrl>
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<None Include="Readme.md" />
<None Include="NuGetIcon.png" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<None Remove="node_modules\**" />
</ItemGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="OrchardCore.Abstractions" Version="2.1.0" />
<PackageReference Include="OrchardCore.Infrastructure" Version="2.1.0" />
</ItemGroup>
</Project>