forked from lukencode/FluentEmail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFluentEmail.Core.csproj
More file actions
18 lines (14 loc) · 845 Bytes
/
Copy pathFluentEmail.Core.csproj
File metadata and controls
18 lines (14 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<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 Fluent Email package here.</Description>
<AssemblyTitle>Fluent Email</AssemblyTitle>
<TargetFramework>netstandard2.0</TargetFramework>
<AssetsDirectory>../../assets</AssetsDirectory>
</PropertyGroup>
<!--<Target Name="PostcompileScript" AfterTargets="Build" Condition=" '$(IsCrossTargetingBuild)' != 'true' ">
<Exec Command="dotnet pack -no-build -configuration $(Configuration)" />
</Target>-->
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="5.0.0" />
</ItemGroup>
</Project>