Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,35 @@ These compiler errors indicate one of these problems in your code:
- You used the [global scope operator, (`::`)](../operators/namespace-alias-qualifier.md) when the type isn't in the global namespace.
- You're accessing an extension member and either the namespace isn't specified in a `using` directive, or you're not referencing the assembly that contains the extension.

### When the assembly appears to be referenced

If the assembly appears to be referenced in your project but you still receive CS0012, try these troubleshooting steps:

- Restore packages: Run `dotnet restore` to ensure all package references are properly resolved, especially after installing or uninstalling NuGet packages.

- Clear the NuGet package cache and restore:

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

- Check for version conflicts: Verify that all referenced assemblies use compatible versions. Look for binding redirect warnings in the build output.

- Clean the solution and rebuild to ensure no stale references remain:

```console
dotnet clean
dotnet build
```

- Verify package integrity: If the error occurred after package operations, ensure the package was installed correctly by removing and reinstalling it:

```console
dotnet remove package [PackageName]
dotnet add package [PackageName]
```

## Type forwarding

- **CS1068**: *The type name could not be found in the global namespace. This type has been forwarded to another assembly. Consider adding a reference to that assembly.*
Expand Down
Loading