From c22a4189b7d3faefecc4cbf45c2edd1ceea4ea44 Mon Sep 17 00:00:00 2001 From: Reiley Yang Date: Wed, 25 Aug 2021 18:06:26 -0700 Subject: [PATCH] completely remove netcoreapp2.1 (#2286) --- .github/ISSUE_TEMPLATE/bug_report.md | 10 +++++----- .../InProcessServer.cs | 4 +--- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index e591c4fa4..2216bfbe1 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -7,14 +7,14 @@ labels: bug # Bug Report List of [NuGet packages](https://www.nuget.org/profiles/OpenTelemetry) and -version that you are using (e.g. `OpenTelemetry 0.4.0-beta.2`): +version that you are using (e.g. `OpenTelemetry 1.0.2`): -* +* TBD -Runtime version (e.g. `net461`, `net48`, `netcoreapp2.1`, `netcoreapp3.1`, etc. -You can find this information from the `*.csproj` file): +Runtime version (e.g. `net461`, `net48`, `netcoreapp3.1`, `net5.0` etc. You can +find this information from the `*.csproj` file): -* +* TBD ## Symptom diff --git a/test/OpenTelemetry.Instrumentation.W3cTraceContext.Tests/InProcessServer.cs b/test/OpenTelemetry.Instrumentation.W3cTraceContext.Tests/InProcessServer.cs index 390ad86f5..e510dc184 100644 --- a/test/OpenTelemetry.Instrumentation.W3cTraceContext.Tests/InProcessServer.cs +++ b/test/OpenTelemetry.Instrumentation.W3cTraceContext.Tests/InProcessServer.cs @@ -20,9 +20,7 @@ using System.IO; using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.DependencyInjection; using OpenTelemetry.Trace; -#if NETCOREAPP2_1 -using TestApp.AspNetCore._2._1; -#elif NETCOREAPP3_1 +#if NETCOREAPP3_1 using TestApp.AspNetCore._3._1; #else using TestApp.AspNetCore._5._0;