2 writes to MaxPlatformVersion
Microsoft.Build.Tasks.Core (2)
ResolveSDKReference.cs (2)
1091MaxPlatformVersion = GetItemMetadataTrimmed(ReferenceItem, SDKManifest.Attributes.MaxPlatformVersion); 1094MaxPlatformVersion = _sdkManifest.MaxPlatformVersion ?? String.Empty;
6 references to MaxPlatformVersion
Microsoft.Build.Tasks.Core (6)
ResolveSDKReference.cs (6)
1092if (String.IsNullOrEmpty(MaxPlatformVersion)) 1248if (!String.IsNullOrEmpty(MaxPlatformVersion)) 1250if (System.Version.TryParse(MaxPlatformVersion, out Version maxPlatformVersionAsVersion) && (maxPlatformVersionAsVersion < targetPlatformVersion)) 1252AddResolutionWarning("ResolveSDKReference.MaxPlatformVersionLessThanTargetPlatformVersion", projectName, DisplayName, Version, targetPlatformIdentifier, MaxPlatformVersion, targetPlatformIdentifier, targetPlatformVersion.ToString()); 1500if (!String.IsNullOrEmpty(MaxPlatformVersion)) 1502ResolvedItem.SetMetadata(SDKManifest.Attributes.MaxPlatformVersion, MaxPlatformVersion);