forked from lukencode/FluentEmail
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathFluentEmail.Core.csproj
26 lines (20 loc) · 1.08 KB
/
FluentEmail.Core.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Send emails very easily. Use razor templates, smtp, embedded files, all without hassle. This is a Base Package and includes just the domain model, very basic defaults, and is also included with every other jcamp.FluentEmail.* package here.</Description>
<AssemblyTitle>Fluent Email</AssemblyTitle>
<TargetFramework>net6.0</TargetFramework>
<AssetsDirectory>../../assets</AssetsDirectory>
<PackageId>jcamp.$(AssemblyName)</PackageId>
<Product>jcamp.$(AssemblyName)</Product>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<!--<Target Name="PostcompileScript" AfterTargets="Build" Condition=" '$(IsCrossTargetingBuild)' != 'true' ">
<Exec Command="dotnet pack -no-build -configuration $(Configuration)" />
</Target>-->
<ItemGroup>
<None Include="../../README.md" Pack="true" Visible="false" PackagePath="\"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
</ItemGroup>
</Project>