Skip to content

Commit

Permalink
Tweak for dotnet format not supporting proj files.
Browse files Browse the repository at this point in the history
  • Loading branch information
CodeBlanch committed May 24, 2024
1 parent e414fc7 commit 8082bd8
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
20 changes: 16 additions & 4 deletions .github/workflows/dotnet-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,16 @@ jobs:
uses: actions/setup-dotnet@v4

- name: dotnet restore
run: dotnet restore
run: dotnet restore ./build/OpenTelemetry.proj

- name: dotnet format
run: dotnet format ./build/OpenTelemetry.proj --no-restore --verify-no-changes
shell: pwsh
run: |
$projects = Get-ChildItem -Path *.csproj -Recurse
foreach ($project in $projects) {
dotnet format $project --no-restore --verify-no-changes
}
env:
ExposeExperimentalFeatures: false

Expand All @@ -35,9 +41,15 @@ jobs:
uses: actions/setup-dotnet@v4

- name: dotnet restore
run: dotnet restore
run: dotnet restore ./build/OpenTelemetry.proj

- name: dotnet format
run: dotnet format ./build/OpenTelemetry.proj --no-restore --verify-no-changes
shell: pwsh
run: |
$projects = Get-ChildItem -Path *.csproj -Recurse
foreach ($project in $projects) {
dotnet format $project --no-restore --verify-no-changes
}
env:
ExposeExperimentalFeatures: true
2 changes: 2 additions & 0 deletions src/OpenTelemetry/Batch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
using System.Collections;
using System.Diagnostics;
using System.Diagnostics.CodeAnalysis;
// Testing dotnet format workflow

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Tests)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Tests)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Tests)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Tests)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Api.Tests)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Api.Tests)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Api.Tests)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Api.Tests)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Api.Tests)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Api.Tests)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Api.Tests)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Api.Tests)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Api.Tests)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-experimental

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-experimental

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-experimental

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-experimental

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-experimental

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-stable

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-stable

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-stable

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-stable

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-stable

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Tests)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Tests)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Tests)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Tests)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Tests)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net462)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net462)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net462)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net462)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net462)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net462)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net462)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net462)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net462)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net462)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net462)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net462)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net462)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net462)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net462)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net6.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net462)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net462)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net462)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net462)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net462)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net7.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net8.0)

Check failure on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net8.0)

Check warning on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-stable

Single-line comment should be preceded by blank line

Check warning on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-stable

Single-line comment should be preceded by blank line

Check warning on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-stable

Single-line comment should be preceded by blank line

Check warning on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-stable

Single-line comment should be preceded by blank line

Check warning on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-stable

Single-line comment should be preceded by blank line

Check warning on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-experimental

Single-line comment should be preceded by blank line

Check warning on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-experimental

Single-line comment should be preceded by blank line

Check warning on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-experimental

Single-line comment should be preceded by blank line

Check warning on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-experimental

Single-line comment should be preceded by blank line

Check warning on line 7 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-experimental

Single-line comment should be preceded by blank line
using System.Linq;

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Tests)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Tests)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Tests)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Tests)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Api.Tests)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Api.Tests)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Api.Tests)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (ubuntu-latest, net8.0, OpenTelemetry.Api.Tests)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (ubuntu-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (ubuntu-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (ubuntu-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (ubuntu-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Api.Tests)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Api.Tests)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Api.Tests)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Api.Tests)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Api.Tests)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-experimental

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-experimental

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-experimental

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-experimental

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-experimental

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-stable

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-stable

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-stable

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-stable

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / validate-packages / run-package-validation-stable

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Tests)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Tests)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Tests)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Tests)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / concurrency-tests / run-concurrency-tests (windows-latest, net8.0, OpenTelemetry.Tests)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net462)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net462)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net462)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net462)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-unstable-core / build-test (windows-latest, net462)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net462)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net462)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net462)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net462)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net462)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net462)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net462)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net462)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net462)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net462)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net6.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net462)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net462)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net462)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net462)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-solution / build-test (windows-latest, net462)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-stable / build-test (windows-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net7.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check failure on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / build-test-project-experimental / build-test (windows-latest, net8.0)

Using directive is unnecessary. (https://learn.microsoft.com/dotnet/fundamentals/code-analysis/style-rules/ide0005)

Check warning on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-stable

Using directive is unnecessary.

Check warning on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-stable

Using directive is unnecessary.

Check warning on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-stable

Using directive is unnecessary.

Check warning on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-stable

Using directive is unnecessary.

Check warning on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-stable

Using directive is unnecessary.

Check warning on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-experimental

Using directive is unnecessary.

Check warning on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-experimental

Using directive is unnecessary.

Check warning on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-experimental

Using directive is unnecessary.

Check warning on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-experimental

Using directive is unnecessary.

Check warning on line 8 in src/OpenTelemetry/Batch.cs

View workflow job for this annotation

GitHub Actions / lint-dotnet-format / run-dotnet-format-experimental

Using directive is unnecessary.
using OpenTelemetry.Internal;
using OpenTelemetry.Logs;

Expand Down

0 comments on commit 8082bd8

Please sign in to comment.