-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathFluentEmail.Graph.csproj
More file actions
64 lines (59 loc) · 2.92 KB
/
FluentEmail.Graph.csproj
File metadata and controls
64 lines (59 loc) · 2.92 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<Authors>David De Sloovere, Matt Goldman</Authors>
<Owner>ESC</Owner>
<Company>ESC</Company>
<Description>Sender for FluentEmail that uses Microsoft Graph API. Implements `FluentEmail.Core.Interfaces.ISender`.</Description>
<PackageTags>fluentemail sender isender graph</PackageTags>
<PackageProjectUrl>https://github.com/ESC-BV/FluentEmail.Graph</PackageProjectUrl>
<PackageIcon>icon.png</PackageIcon>
<DocumentationFile>bin\$(Configuration)\FluentEmail.Graph.xml</DocumentationFile>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<DebugType>embedded</DebugType>
<LangVersion>latest</LangVersion>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Version>0.0.1</Version>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<MinVerVerbosity>detailed</MinVerVerbosity>
<MinVerMinimumMajorMinor>3.0</MinVerMinimumMajorMinor>
<PackageReleaseNotes>v3.0 Updated all dependencies and upgraded test projects to .NET 10
v2.4 Updated Microsoft.Graph to v5
v2.2 Added support for Headers
v2.1 Added support for Inline images
</PackageReleaseNotes>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\icon.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="..\..\README.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Identity" Version="1.17.1" />
<PackageReference Include="DotNet.ReproducibleBuilds" Version="2.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="FluentEmail.Core" Version="3.0.2" />
<PackageReference Include="JetBrains.Annotations" Version="2025.2.4">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.Graph" Version="5.103.0" />
<PackageReference Include="MinVer" Version="7.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
</Project>