-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathOrchardCoreContrib.Email.SendGrid.csproj
More file actions
46 lines (40 loc) · 2.23 KB
/
OrchardCoreContrib.Email.SendGrid.csproj
File metadata and controls
46 lines (40 loc) · 2.23 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
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
<VersionPrefix>1.6.0</VersionPrefix>
<Authors>The Orchard Core Contrib Team</Authors>
<Company />
<Description>Provides mailing functionality using SendGrid service.</Description>
<PackageLicenseExpression>BSD-3-Clause</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/OrchardCoreContrib/OrchardCoreContrib.Modules/tree/main/src/OrchardCoreContrib.Email.SendGrid/README.md</PackageProjectUrl>
<RepositoryUrl>https://github.com/OrchardCoreContrib/OrchardCoreContrib.Modules</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageTags>Orchard Core, Orchard Core Contrib, Email, SendGrid</PackageTags>
<PackageReleaseNotes>https://github.com/OrchardCoreContrib/OrchardCoreContrib.Modules/releases</PackageReleaseNotes>
<PackageId>OrchardCoreContrib.Email.SendGrid</PackageId>
<PackageIcon>icon.png</PackageIcon>
<Product>Orchard Core Contrib SendGrid Module</Product>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Copyright>2019 Orchard Core Contrib</Copyright>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<None Include="../../images/icon.png" Pack="true" PackagePath="icon.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="SendGrid" />
<PackageReference Include="OrchardCore.Admin.Abstractions" />
<PackageReference Include="OrchardCore.DisplayManagement" />
<PackageReference Include="OrchardCore.Email.Abstractions" />
<PackageReference Include="OrchardCore.Infrastructure.Abstractions" />
<PackageReference Include="OrchardCore.Module.Targets" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\OrchardCoreContrib\src\OrchardCoreContrib.Abstractions\OrchardCoreContrib.Abstractions.csproj" />
<ProjectReference Include="..\..\OrchardCoreContrib\src\OrchardCoreContrib.HealthChecks.Abstractions\OrchardCoreContrib.HealthChecks.Abstractions.csproj" />
<ProjectReference Include="..\..\OrchardCoreContrib\src\OrchardCoreContrib.Navigation.Core\OrchardCoreContrib.Navigation.Core.csproj" />
</ItemGroup>
</Project>