2 writes to MaxPlatformVersion
Microsoft.Build.Tasks.Core (2)
ResolveSDKReference.cs (2)
1095MaxPlatformVersion = GetItemMetadataTrimmed(ReferenceItem, SDKManifest.Attributes.MaxPlatformVersion); 1098MaxPlatformVersion = _sdkManifest.MaxPlatformVersion ?? String.Empty;
6 references to MaxPlatformVersion
Microsoft.Build.Tasks.Core (6)
ResolveSDKReference.cs (6)
1096if (String.IsNullOrEmpty(MaxPlatformVersion)) 1252if (!String.IsNullOrEmpty(MaxPlatformVersion)) 1254if (System.Version.TryParse(MaxPlatformVersion, out Version maxPlatformVersionAsVersion) && (maxPlatformVersionAsVersion < targetPlatformVersion)) 1256AddResolutionWarning("ResolveSDKReference.MaxPlatformVersionLessThanTargetPlatformVersion", projectName, DisplayName, Version, targetPlatformIdentifier, MaxPlatformVersion, targetPlatformIdentifier, targetPlatformVersion.ToString()); 1504if (!String.IsNullOrEmpty(MaxPlatformVersion)) 1506ResolvedItem.SetMetadata(SDKManifest.Attributes.MaxPlatformVersion, MaxPlatformVersion);