-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNetPro.Checker.csproj
44 lines (41 loc) · 2.08 KB
/
NetPro.Checker.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
35
36
37
38
39
40
41
42
43
44
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>$(NetCoreTargetVersion)</TargetFramework>
<Version>$(NetProChecker)</Version>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Authors>$(Authors)</Authors>
<Description>
for checking the complex environment of application in the microservice environment.
provide the system environment information of the current application.
and Checking the health of application information and components
</Description>
<PackageProjectUrl>$(PackageProjectUrl)</PackageProjectUrl>
<PackageIcon>$(PackageIcon)</PackageIcon>
<AssemblyName>$(NetProCheckerAssemblyName)</AssemblyName>
<WarningLevel>3</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DocumentationFile>bin\Debug\netcoreapp3.1\NetPro.Checker.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\netcoreapp3.1\NetPro.Checker.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Include="$(PackageIconPath)">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="$(MicrosoftAspNetCoreHttpAbstractions)" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="3.1.9" />
<PackageReference Include="MongoDB.Driver" Version="2.11.3" />
<PackageReference Include="Newtonsoft.Json" Version="$(NewtonsoftJson)" />
<PackageReference Include="StackExchange.Redis" Version="2.1.58" />
<PackageReference Include="AspNetCore.HealthChecks.UI" Version="3.1.3" />
<PackageReference Include="AspNetCore.HealthChecks.UI.Client" Version="3.1.2" />
</ItemGroup>
<Target Name="CopyPackage" AfterTargets="Pack" Condition="'$(OS)' == 'Windows_NT' and Exists('$(SolutionDir)\PushNuget') and '$(Configuration)' == 'Release'">
<Copy SourceFiles="$(ProjectDir)\bin\Release\$(PackageId).$(PackageVersion).nupkg" DestinationFolder="$(SolutionDir)\PushNuget" />
</Target>
</Project>