forked from lukencode/FluentEmail
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathFluentEmail.Postmark.csproj
More file actions
34 lines (28 loc) · 1.18 KB
/
FluentEmail.Postmark.csproj
File metadata and controls
34 lines (28 loc) · 1.18 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Send emails via Postmark using their REST API</Description>
<AssemblyTitle>Fluent Email - Postmark</AssemblyTitle>
<PackageTags>$(PackageTags);postmark</PackageTags>
<PackageId>jcamp.$(AssemblyName)</PackageId>
<Product>jcamp.$(AssemblyName)</Product>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\FluentEmail.Core\FluentEmail.Core.csproj" />
<PackageReference Include="Postmark" Version="5.2.0" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
<PackageReference Include="System.Text.Json" Version="8.0.6" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
<PackageReference Include="System.Text.Json" Version="9.0.10" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'net10.0'">
<PackageReference Include="System.Text.Json" Version="10.0.0" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="8.0.0" />
</ItemGroup>
</Project>