Skip to content

Commit

Permalink
Ensure all HealthChecks libraries have a .NETCoreApp TFM. (#2185)
Browse files Browse the repository at this point in the history
* Ensure all HealthChecks libraries have a .NETCoreApp TFM.

This ensures that when libraries and apps who depend on the HealthChecks libraries get the correct transitive dependences for .NETCoreApp TFMs (for example Microsoft.Bcl.AsyncInterfaces).

This follows the following [guidance](https://learn.microsoft.com/dotnet/standard/library-guidance/cross-platform-targeting):

✔️ CONSIDER multi-targeting even if your source code is the same for all targets, when your project has any library or package dependencies.

Fix #2180
Fix #2084
Fix #2163

* Add [SupportedOSPlatform] to the HealthChecks.System.approved.txt

---------

Co-authored-by: Adam Sitnik <adam.sitnik@gmail.com>
  • Loading branch information
eerhardt and adamsitnik committed Apr 2, 2024
1 parent 05c316d commit 14256f3
Show file tree
Hide file tree
Showing 53 changed files with 67 additions and 49 deletions.
10 changes: 10 additions & 0 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<Project>

<Import Project="..\Directory.Build.props" />

<PropertyGroup>
<DefaultNetCoreApp>net6.0</DefaultNetCoreApp>
<DefaultLibraryTargetFrameworks>$(DefaultNetCoreApp);netstandard2.0</DefaultLibraryTargetFrameworks>
</PropertyGroup>

</Project>
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);ApplicationStatus</PackageTags>
<Description>HealthChecks.ApplicationStatus is the health check package for detection graceful shutdown.</Description>
<VersionPrefix>$(HealthCheckApplicationStatus)</VersionPrefix>
Expand Down
2 changes: 1 addition & 1 deletion src/HealthChecks.ArangoDb/HealthChecks.ArangoDb.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);ArangoDb</PackageTags>
<Description>HealthChecks.ArangoDb is the health check package for ArangoDb.</Description>
<VersionPrefix>$(HealthCheckArangoDb)</VersionPrefix>
Expand Down
2 changes: 1 addition & 1 deletion src/HealthChecks.Aws.S3/HealthChecks.Aws.S3.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);AWS;S3;Simple Storage Service</PackageTags>
<Description>HealthChecks.Aws.S3 is the health check package for S3 Buckets and files.</Description>
<VersionPrefix>$(HealthCheckAWSS3)</VersionPrefix>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);AWS;Secrets Manager;</PackageTags>
<Description>HealthChecks.Aws.SecretsManager is the health check package for Secrets Manager.</Description>
<VersionPrefix>$(HealthCheckAWSSecretsManager)</VersionPrefix>
Expand Down
2 changes: 1 addition & 1 deletion src/HealthChecks.Aws.Sns/HealthChecks.Aws.Sns.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);AWS;SNS;Amazon Simple Notification Service</PackageTags>
<Description>HealthChecks.Aws.Sns is the health check package for Amazon Simple Notification Service.</Description>
<VersionPrefix>$(HealthCheckAWSSns)</VersionPrefix>
Expand Down
2 changes: 1 addition & 1 deletion src/HealthChecks.Aws.Sqs/HealthChecks.Aws.Sqs.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);AWS;SQS;Simple Queue Service</PackageTags>
<Description>HealthChecks.Aws.Sqs is the health check package for SQS queues.</Description>
<VersionPrefix>$(HealthCheckAWSSqs)</VersionPrefix>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);AWS;Systems Manager;Parameter Store</PackageTags>
<Description>HealthChecks.Aws.SystemsManager is the health check package for Systems Manager for Parameter Store.</Description>
<VersionPrefix>$(HealthCheckAWSSystemsManager)</VersionPrefix>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);Azure;Tables</PackageTags>
<Description>HealthChecks.Azure.Data.Tables is the health check package for Azure Tables.</Description>
<VersionPrefix>$(HealthCheckAzureDataTables)</VersionPrefix>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);Azure;IoT Hub</PackageTags>
<Description>HealthChecks.Azure.IoTHub is the health check package for Azure IoT Hub.</Description>
<VersionPrefix>$(HealthCheckIoTHub)</VersionPrefix>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);Azure Key Vault;Secrets</PackageTags>
<Description>HealthChecks.Azure.KeyVault.Secrets is the health check package for Azure Key Vault secrets</Description>
<VersionPrefix>$(HealthCheckKeyVaultSecrets)</VersionPrefix>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);Azure;EventHub</PackageTags>
<Description>HealthChecks.Azure.Messaging.EventHubs is the health check package for Azure Event Hubs.</Description>
<VersionPrefix>$(HealthCheckAzureMessagingEventsHubs)</VersionPrefix>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);Azure;AzureStorage</PackageTags>
<Description>HealthChecks.Azure.Storage.Blobs is the health check package for Blobs.</Description>
<VersionPrefix>$(HealthCheckAzureStorageBlobs)</VersionPrefix>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);Azure;AzureStorage</PackageTags>
<Description>HealthChecks.Azure.Storage.Files.Shares is the health check package for Azure File Shares.</Description>
<VersionPrefix>$(HealthCheckAzureStorageFilesShares)</VersionPrefix>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);Azure;AzureStorage</PackageTags>
<Description>HealthChecks.Azure.Storage.Queues is the health check package for Azure Storage Queues.</Description>
<VersionPrefix>$(HealthCheckAzureStorageQueues)</VersionPrefix>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>HealthCheck;Azure;ApplicationInsights</PackageTags>
<Description>HealthChecks.AzureApplicationInsights is the health check package for Azure Application Insights.</Description>
<VersionPrefix>$(HealthCheckAzureApplicationInsights)</VersionPrefix>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);Azure;DigitalTwin</PackageTags>
<Description>HealthChecks.AzureDigitalTwin is the health check package for Azure DigitalTwin.</Description>
<VersionPrefix>$(HealthCheckAzureDigitalTwin)</VersionPrefix>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);Azure Key Vault;Secrets</PackageTags>
<Description>HealthChecks.AzureKeyVault is the health check package for Azure Key Vault secrets</Description>
<VersionPrefix>$(HealthCheckKeyVault)</VersionPrefix>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);Azure;Search</PackageTags>
<Description>HealthChecks.AzureSearch is the health check package for Azure Search.</Description>
<VersionPrefix>$(HealthCheckAzureSearch)</VersionPrefix>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);Azure;ServiceBus</PackageTags>
<Description>HealthChecks.AzureServiceBus is the health check package for Azure Service Bus Queues and Topics.</Description>
<VersionPrefix>$(HealthCheckAzureServiceBus)</VersionPrefix>
Expand Down
2 changes: 1 addition & 1 deletion src/HealthChecks.Consul/HealthChecks.Consul.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);Consul</PackageTags>
<Description>HealthChecks.Consul is the health check package for Consul Server.</Description>
<VersionPrefix>$(HealthCheckConsul)</VersionPrefix>
Expand Down
2 changes: 1 addition & 1 deletion src/HealthChecks.CosmosDb/HealthChecks.CosmosDb.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);Azure;CosmosDb</PackageTags>
<Description>HealthChecks.CosmosDb is the health check package for Azure CosmosDb.</Description>
<VersionPrefix>$(HealthCheckCosmosDb)</VersionPrefix>
Expand Down
2 changes: 1 addition & 1 deletion src/HealthChecks.DocumentDb/HealthChecks.DocumentDb.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);Azure;DocumentDb</PackageTags>
<Description>HealthChecks.DocumentDb is the health check package for Azure DocumentDb.</Description>
<VersionPrefix>$(HealthCheckDocumentDb)</VersionPrefix>
Expand Down
2 changes: 1 addition & 1 deletion src/HealthChecks.DynamoDb/HealthChecks.DynamoDb.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);DynamoDb;AWS</PackageTags>
<Description>HealthChecks.DynamoDb is the health check package for AWS DynamoDb.</Description>
<VersionPrefix>$(HealthCheckDynamoDb)</VersionPrefix>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);Elasticsearch</PackageTags>
<Description>HealthChecks.Elasticsearch is the health check package for Elasticsearch.</Description>
<VersionPrefix>$(HealthCheckElasticsearch)</VersionPrefix>
Expand Down
2 changes: 1 addition & 1 deletion src/HealthChecks.EventStore/HealthChecks.EventStore.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);EventStore</PackageTags>
<Description>HealthChecks.EventStore is the health check package for EventStore, using the TCP Client.</Description>
<VersionPrefix>$(HealthCheckEventStore)</VersionPrefix>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<!--since v3.0.0 Google.Cloud.Firestore supports netstandard2.1 instead of netstandard2.0-->
<TargetFramework>netstandard2.1</TargetFramework>
<TargetFrameworks>$(DefaultNetCoreApp);netstandard2.1</TargetFrameworks>
<PackageTags>$(PackageTags);CloudFirestore</PackageTags>
<Description>HealthChecks.Gcp.CloudFirestore is the health check package for the Firebase Cloud Firebase realtime database.</Description>
<VersionPrefix>$(HealthCheckCloudFirestore)</VersionPrefix>
Expand Down
2 changes: 1 addition & 1 deletion src/HealthChecks.Gremlin/HealthChecks.Gremlin.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);Gremlin;TinkerPop;GraphDB</PackageTags>
<Description>HealthChecks.Gremlin is the health check package for Gremlin.</Description>
<VersionPrefix>$(HealthCheckGremlin)</VersionPrefix>
Expand Down
2 changes: 1 addition & 1 deletion src/HealthChecks.Hangfire/HealthChecks.Hangfire.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);Hangfire</PackageTags>
<Description>HealthChecks.Hangfire is the health check package for Hangfire.</Description>
<VersionPrefix>$(HealthCheckHangfire)</VersionPrefix>
Expand Down
2 changes: 1 addition & 1 deletion src/HealthChecks.IbmMQ/HealthChecks.IbmMQ.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net6.0;netstandard2.0</TargetFrameworks>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);IbmMQ</PackageTags>
<Description>HealthChecks.IbmMQ is the health check package for IbmMQ.</Description>
<VersionPrefix>$(HealthCheckIbmMQ)</VersionPrefix>
Expand Down
2 changes: 1 addition & 1 deletion src/HealthChecks.InfluxDB/HealthChecks.InfluxDB.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>HealthCheck;Health;InfluxDB</PackageTags>
<Description>HealthChecks.InfluxDB is the health check package for InfluxDB.</Description>
<VersionPrefix>$(HealthCheckInfluxDB)</VersionPrefix>
Expand Down
2 changes: 1 addition & 1 deletion src/HealthChecks.Kafka/HealthChecks.Kafka.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);Kafka;Confluent</PackageTags>
<Description>HealthChecks.Kafka is the health check package for Kafka.</Description>
<VersionPrefix>$(HealthCheckKafka)</VersionPrefix>
Expand Down
2 changes: 1 addition & 1 deletion src/HealthChecks.MongoDb/HealthChecks.MongoDb.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);MongoDb</PackageTags>
<Description>HealthChecks.MongoDb is the health check package for MongoDb.</Description>
<VersionPrefix>$(HealthCheckMongoDB)</VersionPrefix>
Expand Down
2 changes: 1 addition & 1 deletion src/HealthChecks.MySql/HealthChecks.MySql.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);MySQL</PackageTags>
<Description>HealthChecks.MySql is the health check package for MySQL.</Description>
<VersionPrefix>$(HealthCheckMySql)</VersionPrefix>
Expand Down
2 changes: 1 addition & 1 deletion src/HealthChecks.Nats/HealthChecks.Nats.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);Nats</PackageTags>
<Description>HealthChecks.Nats is the health check package for Nats.</Description>
<VersionPrefix>$(HealthCheckNats)</VersionPrefix>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);IdentityServer;IdSvr;OpenId;OpenIdConnect</PackageTags>
<Description>HealthChecks.OpenIdConnectServer is the health check package for OpenIdConnect servers</Description>
<VersionPrefix>$(HealthCheckOpenIdConnectServer)</VersionPrefix>
Expand Down
2 changes: 1 addition & 1 deletion src/HealthChecks.Oracle/HealthChecks.Oracle.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks);netstandard2.1</TargetFrameworks>
<PackageTags>$(PackageTags);Oracle</PackageTags>
<Description>HealthChecks.Oracle is the health check package for Oracle Database.</Description>
<VersionPrefix>$(HealthCheckOracle)</VersionPrefix>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);Publisher;Application Insights</PackageTags>
<Description>HealthChecks.Publisher.ApplicationInsights is the health check publisher for Application Insights.</Description>
<VersionPrefix>$(HealthCheckPublisherAppplicationInsights)</VersionPrefix>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);Publisher;AWS;CloudWatch</PackageTags>
<Description>HealthChecks.Publisher.CloudWatch is the health check publisher for AWS CloudWatch.</Description>
<VersionPrefix>$(HealthCheckPublisherCloudWatch)</VersionPrefix>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);Publisher;Datadog</PackageTags>
<Description>HealthChecks.Publisher.Datadog is the health check publisher for Datadog.</Description>
<VersionPrefix>$(HealthCheckPublisherDatadog)</VersionPrefix>
Expand Down
2 changes: 1 addition & 1 deletion src/HealthChecks.Rabbitmq/HealthChecks.Rabbitmq.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);RabbitMQ</PackageTags>
<Description>HealthChecks.RabbitMQ is the health check package for RabbitMQ.</Description>
<VersionPrefix>$(HealthCheckRabbitMQ)</VersionPrefix>
Expand Down
2 changes: 1 addition & 1 deletion src/HealthChecks.RavenDB/HealthChecks.RavenDB.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);RavenDB</PackageTags>
<Description>HealthChecks.RavenDB is the health check package for RavenDB.</Description>
<VersionPrefix>$(HealthCheckRavenDB)</VersionPrefix>
Expand Down
2 changes: 1 addition & 1 deletion src/HealthChecks.Redis/HealthChecks.Redis.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);Redis</PackageTags>
<Description>HealthChecks.Redis is the health check package for Redis.</Description>
<VersionPrefix>$(HealthCheckRedis)</VersionPrefix>
Expand Down
2 changes: 1 addition & 1 deletion src/HealthChecks.SendGrid/HealthChecks.SendGrid.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<TargetFrameworks>$(DefaultLibraryTargetFrameworks)</TargetFrameworks>
<PackageTags>$(PackageTags);SendGrid</PackageTags>
<Description>HealthChecks.SendGrid is the health check package for SendGrid.</Description>
<VersionPrefix>$(HealthCheckSendGrid)</VersionPrefix>
Expand Down
Loading

0 comments on commit 14256f3

Please sign in to comment.