-
Notifications
You must be signed in to change notification settings - Fork 0
/
JayKay.AspNetCore.Logging.Email.csproj
34 lines (30 loc) · 1.35 KB
/
JayKay.AspNetCore.Logging.Email.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
27
28
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>AspNetCore;Logging;Email</PackageTags>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/jaykay-design/JayKay.AspNetCore.Logging.Email</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/jaykay-design/JayKay.AspNetCore.Logging.Email</PackageProjectUrl>
<Description>Sends log messages via email</Description>
<Company>JayKay-Design S.C.</Company>
<Authors>John Caprez</Authors>
<Title>AspNetCore Logging to Email</Title>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Configuration" Version="7.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>