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)
1009
if (
_sdkManifest
== null)
1017
if (
_sdkManifest
.ReadError)
1019
AddResolutionErrorOrWarning("ResolveSDKReference.ErrorResolvingSDK", ReferenceItem.ItemSpec, ResourceUtilities.FormatResourceStringStripCodeAndKeyword("ResolveSDKReference.ErrorReadingManifest", _sdkManifestPath,
_sdkManifest
.ReadErrorMessage));
1026
SupportedArchitectures =
_sdkManifest
.SupportedArchitectures ?? String.Empty;
1032
DependsOnSDK =
_sdkManifest
.DependsOnSDK ?? String.Empty;
1038
if (
_sdkManifest
.FrameworkIdentities != null)
1040
foreach (KeyValuePair<string, string> kvp in
_sdkManifest
.FrameworkIdentities)
1049
FrameworkIdentity =
_sdkManifest
.FrameworkIdentity ?? String.Empty;
1055
if (
_sdkManifest
.AppxLocations != null)
1057
foreach (KeyValuePair<string, string> kvp in
_sdkManifest
.AppxLocations)
1070
PlatformIdentity =
_sdkManifest
.PlatformIdentity ?? String.Empty;
1076
MinOSVersion =
_sdkManifest
.MinOSVersion ?? String.Empty;
1082
MaxOSVersionTested =
_sdkManifest
.MaxOSVersionTested ?? String.Empty;
1088
MoreInfo =
_sdkManifest
.MoreInfo ?? String.Empty;
1094
MaxPlatformVersion =
_sdkManifest
.MaxPlatformVersion ?? String.Empty;
1100
TargetPlatform =
_sdkManifest
.TargetPlatform ?? String.Empty;
1106
TargetPlatformMinVersion =
_sdkManifest
.TargetPlatformMinVersion ?? String.Empty;
1112
TargetPlatformVersion =
_sdkManifest
.TargetPlatformVersion ?? String.Empty;
1118
SDKType =
_sdkManifest
.SDKType;
1129
DisplayName =
_sdkManifest
.DisplayName ?? String.Empty;
1135
SupportPrefer32Bit =
_sdkManifest
.SupportPrefer32Bit ?? String.Empty;
1141
CopyRedistToSubDirectory =
_sdkManifest
.CopyRedistToSubDirectory ?? String.Empty;
1147
ProductFamilyName =
_sdkManifest
.ProductFamilyName ?? String.Empty;
1152
_supportsMultipleVersions =
_sdkManifest
.SupportsMultipleVersions;