-
Notifications
You must be signed in to change notification settings - Fork 293
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Exporter.Stackdriver] Remove .NET 6 target and add .NET Standard 2.0 (…
…#2127) Co-authored-by: joegoldman2 <[email protected]> Co-authored-by: Mikel Blanchard <[email protected]>
- Loading branch information
1 parent
1f8e668
commit 2729349
Showing
3 changed files
with
22 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 8 additions & 6 deletions
14
src/OpenTelemetry.Exporter.Stackdriver/OpenTelemetry.Exporter.Stackdriver.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,28 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<!-- OmniSharp/VS Code requires TargetFrameworks to be in descending order for IntelliSense and analysis. --> | ||
<TargetFrameworks>net8.0;net6.0;net462</TargetFrameworks> | ||
<Description>Stackdriver .NET Exporter for OpenTelemetry.</Description> | ||
<TargetFrameworks>net8.0;$(NetStandardMinimumSupportedVersion);net462</TargetFrameworks> | ||
<Description>An OpenTelemetry .NET exporter that sends telemetry to Google Stackdriver.</Description> | ||
<PackageTags>$(PackageTags);Stackdriver;Google;GCP;distributed-tracing</PackageTags> | ||
<MinVerTagPrefix>Exporter.Stackdriver-</MinVerTagPrefix> | ||
</PropertyGroup> | ||
|
||
<!--Do not run Package Baseline Validation as this package has never released a stable version. | ||
Remove this property once we have released a stable version and add PackageValidationBaselineVersion property.--> | ||
<!-- Do not run Package Baseline Validation as this package has never released a stable version. | ||
Remove this property once we have released a stable version and add PackageValidationBaselineVersion property. --> | ||
<PropertyGroup> | ||
<DisablePackageBaselineValidation>true</DisablePackageBaselineValidation> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Google.Cloud.Monitoring.V3" Version="[3.4.0,4.0)" /> | ||
<PackageReference Include="Google.Cloud.Trace.V2" Version="[3.3.0,4.0)" /> | ||
<PackageReference Include="Google.Cloud.Monitoring.V3" Version="[3.8.0,4.0)" /> | ||
<PackageReference Include="Google.Cloud.Trace.V2" Version="[3.5.0,4.0)" /> | ||
<PackageReference Include="OpenTelemetry" Version="$(OpenTelemetryCoreLatestVersion)" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Compile Include="$(RepoRoot)\src\Shared\ExceptionExtensions.cs" Link="Includes\ExceptionExtensions.cs" /> | ||
<Compile Include="$(RepoRoot)\src\Shared\Guard.cs" Link="Includes\Guard.cs" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters