-
Notifications
You must be signed in to change notification settings - Fork 769
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove net461 support from API and SDK #3191
Remove net461 support from API and SDK #3191
Conversation
Codecov Report
@@ Coverage Diff @@
## main #3191 +/- ##
==========================================
+ Coverage 85.25% 85.31% +0.06%
==========================================
Files 259 258 -1
Lines 9330 9315 -15
==========================================
- Hits 7954 7947 -7
+ Misses 1376 1368 -8
|
<PropertyGroup> | ||
<Description>Unit test project for OpenTelemetry</Description> | ||
<!-- OmniSharp/VS Code requires TargetFrameworks to be in descending order for IntelliSense and analysis. --> | ||
<TargetFrameworks>net6.0;net5.0;netcoreapp3.1</TargetFrameworks> | ||
<TargetFrameworks Condition="$(OS) == 'Windows_NT'">$(TargetFrameworks);net461</TargetFrameworks> | ||
<TargetFrameworks Condition="$(OS) == 'Windows_NT'">$(TargetFrameworks);net462</TargetFrameworks> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we update the workflows now or will that be a seperate PR?
opentelemetry-dotnet/.github/workflows/windows-ci.yml
Lines 17 to 19 in 503d2b0
strategy: | |
matrix: | |
version: [net461,netcoreapp3.1,net5.0,net6.0] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yea will do in follow ups.
…ijothomas/opentelemetry-dotnet into cijothomas/removenet461_apisdk
Towards #3190
Will do separate PRs for other projects, this one just deals with API/SDK and Docs.