forked from lukencode/FluentEmail
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathFluentEmail.Liquid.csproj
30 lines (25 loc) · 1.05 KB
/
FluentEmail.Liquid.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Generate emails using Liquid templates. Uses the Fluid project under the hood.</Description>
<AssemblyTitle>Fluent Email - Liquid</AssemblyTitle>
<Authors>Marko Lahma;$(Authors)</Authors>
<PackageTags>$(PackageTags);liquid</PackageTags>
<TargetFramework>net6.0</TargetFramework>
<AssetsDirectory>../../../assets</AssetsDirectory>
<NoWarn>NU5104</NoWarn>
<Nullable>enable</Nullable>
<PackageId>jcamp.$(AssemblyName)</PackageId>
<Product>jcamp.$(AssemblyName)</Product>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Fluid.Core" Version="2.5.0" />
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="6.0.13" />
<PackageReference Include="Microsoft.Extensions.Options" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\FluentEmail.Core\FluentEmail.Core.csproj" />
</ItemGroup>
</Project>