forked from lukencode/FluentEmail
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathFluentEmail.Bootstrap.csproj
More file actions
30 lines (25 loc) · 991 Bytes
/
FluentEmail.Bootstrap.csproj
File metadata and controls
30 lines (25 loc) · 991 Bytes
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>Process the FluentEmail templates through UnDotNet.BootstrapEmail. Allows for simpler templates.</Description>
<AssemblyTitle>Fluent Email - Bootstrap</AssemblyTitle>
<Authors>John Campion</Authors>
<PackageTags>$(PackageTags);bootstrap</PackageTags>
<AssetsDirectory>../../../assets</AssetsDirectory>
<NoWarn>NU5104</NoWarn>
<Nullable>enable</Nullable>
<PackageId>jcamp.$(AssemblyName)</PackageId>
<Product>jcamp.$(AssemblyName)</Product>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\FluentEmail.Core\FluentEmail.Core.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="UnDotNet.BootstrapEmail" Version="1.*" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="8.0.0" />
</ItemGroup>
</Project>