-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNetcorext.Diagnostics.HealthChecks.MemoryCache.csproj
More file actions
36 lines (33 loc) · 1.78 KB
/
Netcorext.Diagnostics.HealthChecks.MemoryCache.csproj
File metadata and controls
36 lines (33 loc) · 1.78 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<VersionMajor>1</VersionMajor>
<VersionMinor>0</VersionMinor>
<VersionPatch>1</VersionPatch>
<VersionPrefix>$(VersionMajor).$(VersionMinor).$(VersionPatch)</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<FileVersion>$(VersionMajor).$([System.DateTime]::UtcNow.ToString(yy)).$([System.DateTime]::UtcNow.ToString(MMdd)).$([System.DateTime]::UtcNow.ToString(HHmm))</FileVersion>
<IsPackable>true</IsPackable>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TargetsForTfmSpecificBuildOutput>$(TargetsForTfmSpecificBuildOutput);IncludeProjectReferences</TargetsForTfmSpecificBuildOutput>
<Authors>NETCOREXT</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/NETCOREXT/Netcorext.Diagnostics.HealthChecks.MemoryCache</PackageProjectUrl>
<RepositoryUrl>https://github.com/NETCOREXT/Netcorext.Diagnostics.HealthChecks.MemoryCache.git</RepositoryUrl>
<Description>Health checker for MemoryCache</Description>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks" Version="6.0"/>
<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="6.0" />
</ItemGroup>
<Target Name="IncludeProjectReferences" DependsOnTargets="ResolveReferences">
<ItemGroup>
<IncludeBuildOutput />
<BuildOutputInPackage Include="@(ReferenceCopyLocalPaths->WithMetadataValue('ReferenceSourceTarget', 'ProjectReference'))" />
</ItemGroup>
</Target>
</Project>