Draft
Conversation
Contributor
|
This PR has been automatically marked as stale because it has no activity for 7 days. It will be closed if no further activity occurs within another 7 days of this comment. If it is closed, you may reopen it anytime when you're ready again, as long as you don't delete the branch. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bug
Progress: NuGet/Home#14851
Description
Continues the NuGet.Protocol nullable annotation work. Removes
#nullable disablefrom 8 more files and annotates public API surfaces.Files migrated
HttpSourceCacheContext.cs–RootTempFoldermadestring?NullSourceCacheContext.cs– fixedWithRefreshCacheTrue()/Clone()to useInstanceproperty instead of_instancefield (avoids returning null before first access)PackageDownloadContext.cs–DirectDownloadDirectory,ClientPolicyContext,PackageSourceMappingmade nullable;directDownloadDirectoryandpackageSourceMappingConfigurationparameters made nullableRemoteSourceDependencyInfo.cs–contentUrimade non-null withArgumentNullExceptionguard (see risk note below); fixedEquals(object)which was incorrectly casting toPackageDependencyInfoinstead ofRemoteSourceDependencyInfoSourceCacheContext.cs–Clone()now assigns_generatedTempFoldervia field instead of through theGeneratedTempFolderproperty (which has side effects);Disposeuses captured localSourcePackageDependencyInfo.cs–Source,DownloadUri,PackageHashmade nullable (all optional per XML docs)UserAgent.cs– removed#nullable disable(no annotation changes needed)UserAgentStringBuilder.cs–_vsInfo,_osInfo,_ciInfofields andWithVisualStudioSKUparameter made nullableRisk note
RemoteSourceDependencyInfoconstructor now throwsArgumentNullExceptionforcontentUri. Previously null was silently accepted. TheContentUriproperty is typed as non-null (string!) in the public API. Callers passing null today would hit aNullReferenceExceptionlater when the value is used — the new guard makes this fail-fast instead.Bug fix
RemoteSourceDependencyInfo.Equals(object)was casting toPackageDependencyInfoinstead ofRemoteSourceDependencyInfo, meaning it always returned false for valid comparisons.PR Checklist