From 412e5d043b5681315fd1f097ad763442d5180a9b Mon Sep 17 00:00:00 2001 From: James Groom Date: Sat, 15 Apr 2023 09:35:56 +1000 Subject: [PATCH] Updated C# and .NET docs supplement (markdown) --- C#-and-.NET-docs-supplement.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/C#-and-.NET-docs-supplement.md b/C#-and-.NET-docs-supplement.md index 54622f0..2258e92 100644 --- a/C#-and-.NET-docs-supplement.md +++ b/C#-and-.NET-docs-supplement.md @@ -26,6 +26,12 @@ On (older versions of?) VS, `Condition` is ignored if placed on a property. Crea When ``ing a `.props` file, `ProjectDir` is unset (but `SolutionDir` *is* set, if applicable). Use `MSBuildProjectDirectory`. Note that the latter doesn't include a trailing slash. +## NuGet resources are all for old CLI + +[up-to-date docs on MSDN](https://learn.microsoft.com/en-us/nuget/consume-packages/install-use-packages-dotnet-cli) + +`dotnet list BizHawk.sln package --outdated` lists outdated ``s + ## `String.GetHashCode` stability The `GetHashCode` implementation for strings does not reflect the string's contents, and as such, the hash not stable between program instances.