-
Notifications
You must be signed in to change notification settings - Fork 1
/
Lombiq.AuditTrailExtensions.csproj
43 lines (36 loc) · 1.73 KB
/
Lombiq.AuditTrailExtensions.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
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
<DefaultItemExcludes>$(DefaultItemExcludes);.git*;node_modules\**;Tests\**</DefaultItemExcludes>
</PropertyGroup>
<PropertyGroup>
<Title>Lombiq Audit Trail Extensions for Orchard Core</Title>
<Authors>Lombiq Technologies</Authors>
<Copyright>Copyright © 2021, Lombiq Technologies Ltd.</Copyright>
<Description>Lombiq Audit Trail Extensions for Orchard Core: A module with additional features for the Audit Trail module in Orchard Core. See the project website for detailed documentation.</Description>
<PackageIcon>NuGetIcon.png</PackageIcon>
<PackageTags>OrchardCore;Lombiq;AspNetCore;AuditTrail</PackageTags>
<RepositoryUrl>https://github.com/Lombiq/Audit-Trail-Extensions</RepositoryUrl>
<PackageProjectUrl>https://github.com/Lombiq/Audit-Trail-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\**" />
<None Remove="Tests\**" />
<None Include="Readme.md" />
</ItemGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="OrchardCore.Module.Targets" Version="2.0.0" />
<PackageReference Include="OrchardCore.ContentManagement" Version="2.0.0" />
<PackageReference Include="OrchardCore.AuditTrail" Version="2.0.0" />
<PackageReference Include="OrchardCore.Contents" Version="2.0.0" />
</ItemGroup>
</Project>