Skip to content

Commit a07a4e9

Browse files
CopilotBillWagner
andcommitted
Add NuGet guidance to CS1061 compiler error documentation
Co-authored-by: BillWagner <[email protected]>
1 parent acc5372 commit a07a4e9

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,6 @@ BenchmarkDotNet.Artifacts
6363

6464
# ReplayCheck (temporary)
6565
.replaycheck/
66+
67+
# Node.js dependencies
68+
node_modules/

docs/csharp/language-reference/compiler-messages/cs1061.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ public class Program
4949
1. Make sure you typed the member name correctly.
5050
2. If you have access to modify this class, you can add the missing member and implement it.
5151
3. If you don't have access to modify this class, you can add an [extension method](../../programming-guide/classes-and-structs/extension-methods.md).
52+
4. If the member you're trying to access should exist but doesn't, you might be missing a required NuGet package. Search [NuGet.org](https://www.nuget.org/) to find packages that contain the missing member.
5253

5354
## See also
5455

0 commit comments

Comments
 (0)