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)
1013
if (
_sdkManifest
== null)
1021
if (
_sdkManifest
.ReadError)
1023
AddResolutionErrorOrWarning("ResolveSDKReference.ErrorResolvingSDK", ReferenceItem.ItemSpec, ResourceUtilities.FormatResourceStringStripCodeAndKeyword("ResolveSDKReference.ErrorReadingManifest", _sdkManifestPath,
_sdkManifest
.ReadErrorMessage));
1030
SupportedArchitectures =
_sdkManifest
.SupportedArchitectures ?? String.Empty;
1036
DependsOnSDK =
_sdkManifest
.DependsOnSDK ?? String.Empty;
1042
if (
_sdkManifest
.FrameworkIdentities != null)
1044
foreach (KeyValuePair<string, string> kvp in
_sdkManifest
.FrameworkIdentities)
1053
FrameworkIdentity =
_sdkManifest
.FrameworkIdentity ?? String.Empty;
1059
if (
_sdkManifest
.AppxLocations != null)
1061
foreach (KeyValuePair<string, string> kvp in
_sdkManifest
.AppxLocations)
1074
PlatformIdentity =
_sdkManifest
.PlatformIdentity ?? String.Empty;
1080
MinOSVersion =
_sdkManifest
.MinOSVersion ?? String.Empty;
1086
MaxOSVersionTested =
_sdkManifest
.MaxOSVersionTested ?? String.Empty;
1092
MoreInfo =
_sdkManifest
.MoreInfo ?? String.Empty;
1098
MaxPlatformVersion =
_sdkManifest
.MaxPlatformVersion ?? String.Empty;
1104
TargetPlatform =
_sdkManifest
.TargetPlatform ?? String.Empty;
1110
TargetPlatformMinVersion =
_sdkManifest
.TargetPlatformMinVersion ?? String.Empty;
1116
TargetPlatformVersion =
_sdkManifest
.TargetPlatformVersion ?? String.Empty;
1122
SDKType =
_sdkManifest
.SDKType;
1133
DisplayName =
_sdkManifest
.DisplayName ?? String.Empty;
1139
SupportPrefer32Bit =
_sdkManifest
.SupportPrefer32Bit ?? String.Empty;
1145
CopyRedistToSubDirectory =
_sdkManifest
.CopyRedistToSubDirectory ?? String.Empty;
1151
ProductFamilyName =
_sdkManifest
.ProductFamilyName ?? String.Empty;
1156
_supportsMultipleVersions =
_sdkManifest
.SupportsMultipleVersions;