1 write to _sdkManifest
Microsoft.Build.Tasks.Core (1)
ResolveSDKReference.cs (1)
1015_sdkManifest = new SDKManifest(ResolvedPath);
24 references to _sdkManifest
Microsoft.Build.Tasks.Core (24)
ResolveSDKReference.cs (24)
1009if (_sdkManifest == null) 1017if (_sdkManifest.ReadError) 1019AddResolutionErrorOrWarning("ResolveSDKReference.ErrorResolvingSDK", ReferenceItem.ItemSpec, ResourceUtilities.FormatResourceStringStripCodeAndKeyword("ResolveSDKReference.ErrorReadingManifest", _sdkManifestPath, _sdkManifest.ReadErrorMessage)); 1026SupportedArchitectures = _sdkManifest.SupportedArchitectures ?? String.Empty; 1032DependsOnSDK = _sdkManifest.DependsOnSDK ?? String.Empty; 1038if (_sdkManifest.FrameworkIdentities != null) 1040foreach (KeyValuePair<string, string> kvp in _sdkManifest.FrameworkIdentities) 1049FrameworkIdentity = _sdkManifest.FrameworkIdentity ?? String.Empty; 1055if (_sdkManifest.AppxLocations != null) 1057foreach (KeyValuePair<string, string> kvp in _sdkManifest.AppxLocations) 1070PlatformIdentity = _sdkManifest.PlatformIdentity ?? String.Empty; 1076MinOSVersion = _sdkManifest.MinOSVersion ?? String.Empty; 1082MaxOSVersionTested = _sdkManifest.MaxOSVersionTested ?? String.Empty; 1088MoreInfo = _sdkManifest.MoreInfo ?? String.Empty; 1094MaxPlatformVersion = _sdkManifest.MaxPlatformVersion ?? String.Empty; 1100TargetPlatform = _sdkManifest.TargetPlatform ?? String.Empty; 1106TargetPlatformMinVersion = _sdkManifest.TargetPlatformMinVersion ?? String.Empty; 1112TargetPlatformVersion = _sdkManifest.TargetPlatformVersion ?? String.Empty; 1118SDKType = _sdkManifest.SDKType; 1129DisplayName = _sdkManifest.DisplayName ?? String.Empty; 1135SupportPrefer32Bit = _sdkManifest.SupportPrefer32Bit ?? String.Empty; 1141CopyRedistToSubDirectory = _sdkManifest.CopyRedistToSubDirectory ?? String.Empty; 1147ProductFamilyName = _sdkManifest.ProductFamilyName ?? String.Empty; 1152_supportsMultipleVersions = _sdkManifest.SupportsMultipleVersions;