-
Notifications
You must be signed in to change notification settings - Fork 575
Expand file tree
/
Copy pathSendGrid.Extensions.DependencyInjection.csproj
More file actions
43 lines (37 loc) · 1.84 KB
/
SendGrid.Extensions.DependencyInjection.csproj
File metadata and controls
43 lines (37 loc) · 1.84 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<VersionPrefix>1.0.1</VersionPrefix>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyOriginatorKeyFile>../../tools/sendgrid-csharp.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<CodeAnalysisRuleset>..\SendGrid\SendGrid.ruleset</CodeAnalysisRuleset>
<Nullable>enable</Nullable>
<WarningsAsErrors>nullable</WarningsAsErrors>
<LangVersion>8</LangVersion>
</PropertyGroup>
<PropertyGroup>
<Authors>Elmer Thomas;Twilio DX Team</Authors>
<Company>Twilio SendGrid</Company>
<Product>Twilio SendGrid</Product>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://sendgrid.com/</PackageProjectUrl>
<RepositoryUrl>https://github.com/sendgrid/sendgrid-csharp.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageIconUrl>https://sendgrid.com/wp-content/themes/sgdotcom/pages/resource/brand//2016/SendGrid-Logomark.png</PackageIconUrl>
<PackageDescription>integrate SendGrid with HttpClientFactory and Microsoft.Extensions.DependencyInjection</PackageDescription>
<PackageReleaseNotes>Please see: https://github.com/sendgrid/sendgrid-csharp/releases </PackageReleaseNotes>
<PackageTags>Twilio;SendGrid;Email;Mail;Microsoft;Azure;Transactional;.NET Core</PackageTags>
<Copyright>Twilio SendGrid, Inc. 2019</Copyright>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Http" Version="2.1.0" />
<PackageReference Include="StyleCop.Analyzers" Version="1.*" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="..\SendGrid\stylecop.json" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SendGrid\SendGrid.csproj" />
</ItemGroup>
</Project>