forked from lukencode/FluentEmail
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathFluentEmail.Liquid.csproj
More file actions
43 lines (37 loc) · 1.63 KB
/
FluentEmail.Liquid.csproj
File metadata and controls
43 lines (37 loc) · 1.63 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
<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>
<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.30.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="8.0.21" />
<PackageReference Include="Microsoft.Extensions.Options" Version="8.0.2" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="9.0.10" />
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.10" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="10.0.0" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\FluentEmail.Core\FluentEmail.Core.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="8.0.0" />
</ItemGroup>
</Project>