* Fixing errors in W3CTraceContextTests
* Fix test_tracestate_key_illegal_vendor_format and test_tracestate_key_length_limit
(cherry picked from commit 5a2bd56c8f83b8e9094534084988992184f4fe7e)
* update test run result
(cherry picked from commit 4e23f9aec69c59affb27327e0a624b32a82317cc)
* Fix test_traceparent_version_0x00 and test_traceparent_version_0xff
Note: the bug was introduced in https://github.com/open-telemetry/opentelemetry-dotnet/pull/923/files#diff-670edb2ea7fa1212aab16a9f732dad8b1e2f15801a3eac1bd0824385355d7d97L262
* Validate key with Trace Context v1 https://www.w3.org/TR/trace-context-1/ which has W3C Recommendation status.
* Refactor validator for lower case alpha and digit
* Fix bug in vendor parsing and vendor valid character check.
* Fix typo and add link where magic numbers are defined.
* Adding comments
* Update comment
* Reuse OWS (Optional Whitespace characters). Utilize return value of HashSet.Add. Forbid upper case in traceparent string.
* Use Span and Slice instead of string.Split
* Remove unused OptionalWhiteSpaceCharacters variable
Co-authored-by: Cijo Thomas <cithomas@microsoft.com>
* Adding multitarget to integration tests
changing to ENV
updating to multiline
removing multiline
updating version of docker-compose
updating dockerfile
updating pipeline
testing again
testing
updating version to 3.7
updating dockerfile
testing
updating to env
adding .env to test
updating docker compose
removing default value
docker compose with options
updating dockerfile to isntall netcore 2.1
adding info to check what are the versions installed
updating script
adding condition to download only in netcoreapp2.1
updating condition
updating dockerfile
adding arg
updating files to enable netcoreapp2.1 and 3.1 test
updating version
removing duplicated files, adding to build folder
updating project to tests
updating project to tests
updating to tests
adding sdk as tag
updating dockerfile
removing sdk_version fixed value
updating arg order
updating files
* removing fixed version
* Attempting to get redis integration tests up and running.
* Attempting to get SqlClient integration tests working on 2.1 + 3.1.
* Attempting to get W3C integration tests running on 2.1 & 3.1.
* Added version to Microsoft.AspNetCore.App 2.1 refs.
* Comment cleanup.
* Attempting to fix explicit reference warnings.
Co-authored-by: Mikel Blanchard <mblanchard@macrosssoftware.com>
* Add instrumentation for W3C trace context in TestApp
* Add unit test for W3C Trace Context test suite
* Fix error SA1638: File header file name documentation should match file name
* remove assert
* Change ITestOutputHelper for test output
* Add project template for W3C Trace Context
* Move the test class to new test project
* Created an InProcessServer as the web server
* remove assert
* Use services.AddOpenTelemetry
* Run the test suite in a docker container
* Update to follow the rename of extension methods from AddOpenTelemetry to AddOpenTelemetryTracerProvider
* Add tests to GitHub Actions workflow
* rename to services.AddOpenTelemetryTracing
Co-authored-by: Cijo Thomas <cithomas@microsoft.com>