1 write to _sdkManifest
Microsoft.Build.Tasks.Core (1)
ResolveSDKReference.cs (1)
1019_sdkManifest = new SDKManifest(ResolvedPath);
24 references to _sdkManifest
Microsoft.Build.Tasks.Core (24)
ResolveSDKReference.cs (24)
1013if (_sdkManifest == null) 1021if (_sdkManifest.ReadError) 1023AddResolutionErrorOrWarning("ResolveSDKReference.ErrorResolvingSDK", ReferenceItem.ItemSpec, ResourceUtilities.FormatResourceStringStripCodeAndKeyword("ResolveSDKReference.ErrorReadingManifest", _sdkManifestPath, _sdkManifest.ReadErrorMessage)); 1030SupportedArchitectures = _sdkManifest.SupportedArchitectures ?? String.Empty; 1036DependsOnSDK = _sdkManifest.DependsOnSDK ?? String.Empty; 1042if (_sdkManifest.FrameworkIdentities != null) 1044foreach (KeyValuePair<string, string> kvp in _sdkManifest.FrameworkIdentities) 1053FrameworkIdentity = _sdkManifest.FrameworkIdentity ?? String.Empty; 1059if (_sdkManifest.AppxLocations != null) 1061foreach (KeyValuePair<string, string> kvp in _sdkManifest.AppxLocations) 1074PlatformIdentity = _sdkManifest.PlatformIdentity ?? String.Empty; 1080MinOSVersion = _sdkManifest.MinOSVersion ?? String.Empty; 1086MaxOSVersionTested = _sdkManifest.MaxOSVersionTested ?? String.Empty; 1092MoreInfo = _sdkManifest.MoreInfo ?? String.Empty; 1098MaxPlatformVersion = _sdkManifest.MaxPlatformVersion ?? String.Empty; 1104TargetPlatform = _sdkManifest.TargetPlatform ?? String.Empty; 1110TargetPlatformMinVersion = _sdkManifest.TargetPlatformMinVersion ?? String.Empty; 1116TargetPlatformVersion = _sdkManifest.TargetPlatformVersion ?? String.Empty; 1122SDKType = _sdkManifest.SDKType; 1133DisplayName = _sdkManifest.DisplayName ?? String.Empty; 1139SupportPrefer32Bit = _sdkManifest.SupportPrefer32Bit ?? String.Empty; 1145CopyRedistToSubDirectory = _sdkManifest.CopyRedistToSubDirectory ?? String.Empty; 1151ProductFamilyName = _sdkManifest.ProductFamilyName ?? String.Empty; 1156_supportsMultipleVersions = _sdkManifest.SupportsMultipleVersions;