-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLib.Health.csproj
26 lines (24 loc) · 1.22 KB
/
Lib.Health.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>
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>Jitesoft.Lib.Health</RootNamespace>
<Company>Jitesoft AB</Company>
<Authors>Johannes Tegnér</Authors>
<Description>Health check service running a kestrel webserver as a IHostedService</Description>
<PackageProjectUrl>https://github.com/jitesoft/csharp-healthcheck</PackageProjectUrl>
<RepositoryUrl>https://github.com/jitesoft/csharp-healthcheck</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicense>https://github.com/jitesoft/csharp-healthcheck/blob/master/LICENSE</PackageLicense>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<AssemblyName>Jitesoft.Lib.Health</AssemblyName>
<Copyright>(C) Jitesoft AB</Copyright>
<Title>Jitesoft.Lib.Health</Title>
<LangVersion>12</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Options" Version="8.0.0" />
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
</Project>