forked from Lombiq/Helpful-Extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLombiq.HelpfulExtensions.csproj
53 lines (44 loc) · 2.38 KB
/
Lombiq.HelpfulExtensions.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
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
<DefaultItemExcludes>$(DefaultItemExcludes);.git*;node_modules\**</DefaultItemExcludes>
</PropertyGroup>
<PropertyGroup>
<Title>Lombiq Helpful Extensions for Orchard Core</Title>
<Authors>Lombiq Technologies</Authors>
<Copyright>Copyright © 2013, Lombiq Technologies Ltd.</Copyright>
<Description>Lombiq Helpful Extensions for Orchard Core: Orchard Core module containing some handy extensions (e.g. useful content types and widgets). It's also available on all sites of DotNest, the Orchard SaaS. See the project website for detailed documentation.</Description>
<PackageIcon>NuGetIcon.png</PackageIcon>
<PackageTags>OrchardCore;Lombiq;AspNetCore;CodeGeneration;ShapeTracing;Widgets</PackageTags>
<RepositoryUrl>https://github.com/Lombiq/Helpful-Extensions</RepositoryUrl>
<PackageProjectUrl>https://github.com/Lombiq/Helpful-Extensions</PackageProjectUrl>
<PackageLicenseFile>Licence.md</PackageLicenseFile>
</PropertyGroup>
<ItemGroup>
<None Include="Licence.md" Pack="true" PackagePath="" />
<None Include="Readme.md" />
<None Include="NuGetIcon.png" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<None Remove="node_modules\**" />
<None Remove="Tests\**" />
</ItemGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="OrchardCore.Autoroute" Version="1.3.0" />
<PackageReference Include="OrchardCore.Contents" Version="1.3.0" />
<PackageReference Include="OrchardCore.Flows" Version="1.3.0" />
<PackageReference Include="OrchardCore.Html" Version="1.3.0" />
<PackageReference Include="OrchardCore.MetaWeblog.Abstractions" Version="1.3.0" />
<PackageReference Include="OrchardCore.Module.Targets" Version="1.3.0" />
</ItemGroup>
<ItemGroup Condition="'$(NuGetBuild)' != 'true'">
<ProjectReference Include="..\..\Libraries\Lombiq.HelpfulLibraries\Lombiq.HelpfulLibraries.OrchardCore\Lombiq.HelpfulLibraries.OrchardCore.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(NuGetBuild)' == 'true'">
<PackageReference Include="Lombiq.HelpfulLibraries.OrchardCore" Version="4.0.0" />
</ItemGroup>
</Project>