Skip to content
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

Improve Contributor Guide #6127

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
23 changes: 23 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -333,3 +333,26 @@ See
[EnvironmentVariablesExtensions.cs](./src/Shared/EnvironmentVariables/EnvironmentVariablesExtensions.cs)
for an example of a file copied from another project and attributed in the [3rd
party notices](./THIRD-PARTY-NOTICES.TXT) file.

## Troubleshooting

### Build and Test Challenge

#### Version Mismatch Between Assemblies

**Issue:** CS1705 version conflict when referencing OpenTelemetry.Api package.

**Fix:**

Ensure dependencies are updated by running:

```sh
dotnet restore
```

If the issue persists, force-reinstall dependencies:

```sh
dotnet nuget locals all --clear
dotnet restore
```