-
Couldn't load subscription status.
- Fork 123
Use framework-specific dependencies for .NET Framework versions #4505
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
Open
iskiselev
wants to merge
36
commits into
open-telemetry:main
Choose a base branch
from
iskiselev:multitargeting-fx
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
f5da22d
Use framework-specific dependency collection for .Net Framework versions
iskiselev 0f69e49
Merge remote-tracking branch 'origin/main'
iskiselev 0045c40
Format fix
iskiselev 8b4d03b
Excluded Assemblies.NetFramework from build on non-windows OS
iskiselev c347876
Publish .Net Framework project only on windows
iskiselev 8b05f5f
Fixed format for c# files
iskiselev 4ef8534
Excluded .NetFramework assemblies-collecting project from producing N…
iskiselev ba8784d
Fixed test
iskiselev db32846
Bootstrap test fix (explicit reference)
iskiselev ce49362
Test fix (explicit reference)
iskiselev 3c38ccc
Verified file structure fixed
iskiselev 98f034d
Integration test fix (explicit reference)
iskiselev fad337e
Preserve empty folders with "_._" file
iskiselev 96cfbec
Include _._ in verified structure.
iskiselev 3b2b3fe
Fixed assembly redirection table generation / selection
iskiselev 0829341
Format fix
iskiselev 200839e
Corrected build/test machine GAC install/uninstall
iskiselev 69075e0
Fixed empty lines
iskiselev ba9f1ce
Moved transitive dependencies pinning to OpenTelemetry.AutoInstrument…
iskiselev 0d8480c
Merge remote-tracking branch 'origin/main'
iskiselev 589f02a
Updated dependencies
iskiselev f9295d5
Reverted version override for test application
iskiselev 7879ade
Removed unused code
iskiselev fcd3cfb
Updated image pinning to run tests
iskiselev 24957a5
Merge remote-tracking branch 'origin/main'
iskiselev 44d1c3c
README modified and tests added
iskiselev d4938a6
Changelog updated. Fixed BOM.
iskiselev e8330c6
Changelog fixed
iskiselev 22524fb
Generated files updates
iskiselev 7ba8086
Changelog fixed
iskiselev 6cea088
Generated file update
iskiselev 57b2d19
Test with latest .NET SDK
iskiselev 634d4cc
Test with latest .NET SDK
iskiselev 19d1000
Merge remote-tracking branch 'origin/main' into multitargeting-fx
iskiselev 8a1f1f2
PR feedback implemented
iskiselev afef7dd
Merge remote-tracking branch 'origin/main' into multitargeting-fx
iskiselev File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -39,6 +39,19 @@ This component adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.h | |||||
| - .NET Framework only, following packages updated | ||||||
| - `OpenTelemetry.Instrumentation.AspNet` from `1.12.0-beta.1` to `1.13.0-beta.2`. | ||||||
|
|
||||||
| #### Dependencies on .Net Framework | ||||||
|
|
||||||
| When OpenTelemetry .NET AutoInstrumentation is compiled for .NET Framework, | ||||||
| it uses the net462 Target Framework Moniker (TFM). As a result, the ZIP archive | ||||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| deployment contained dependency assemblies targeted for .NET Framework 4.6.2. | ||||||
| Some of these assemblies were not designed to be used with later versions of | ||||||
| .NET Framework. | ||||||
|
|
||||||
| Now, when the OpenTelemetry ZIP archive is built, dependency assemblies are | ||||||
| included for all supported .NET Framework versions. OpenTelemetry .NET | ||||||
| AutoInstrumentation detects the .NET Framework version at install time | ||||||
| and runtime, then loads the correct version of dependency assemblies. | ||||||
|
|
||||||
| ### Deprecated | ||||||
|
|
||||||
| ### Removed | ||||||
|
|
||||||
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.