15 references to AppxLocations
Microsoft.Build.Tasks.Core (2)
ResolveSDKReference.cs (2)
1055
if (_sdkManifest.
AppxLocations
!= null)
1057
foreach (KeyValuePair<string, string> kvp in _sdkManifest.
AppxLocations
)
Microsoft.Build.Utilities.UnitTests (13)
ToolLocationHelper_Tests.cs (13)
3307
sdkManifest.
AppxLocations
.ShouldBeNull();
3359
sdkManifest.
AppxLocations
.ShouldContainKey("AppX-Debug-x86");
3360
sdkManifest.
AppxLocations
.ShouldContainKey("AppX-Debug-x64");
3361
sdkManifest.
AppxLocations
.ShouldContainKey("AppX-Debug-ARM");
3363
sdkManifest.
AppxLocations
.ShouldContainKey("AppX-Retail-x86");
3364
sdkManifest.
AppxLocations
.ShouldContainKey("AppX-Retail-x64");
3365
sdkManifest.
AppxLocations
.ShouldContainKey("AppX-Retail-ARM");
3367
sdkManifest.
AppxLocations
["AppX-Debug-x86"].ShouldBe(".\\AppX\\Debug\\x86\\Microsoft.MySDK.x86.Debug.1.0.appx");
3368
sdkManifest.
AppxLocations
["AppX-Debug-x64"].ShouldBe(".\\AppX\\Debug\\x64\\Microsoft.MySDK.x64.Debug.1.0.appx");
3369
sdkManifest.
AppxLocations
["AppX-Debug-ARM"].ShouldBe(".\\AppX\\Debug\\ARM\\Microsoft.MySDK.ARM.Debug.1.0.appx");
3371
sdkManifest.
AppxLocations
["AppX-Retail-x86"].ShouldBe(".\\AppX\\Retail\\x86\\Microsoft.MySDK.x86.1.0.appx");
3372
sdkManifest.
AppxLocations
["AppX-Retail-x64"].ShouldBe(".\\AppX\\Retail\\x64\\Microsoft.MySDK.x64.1.0.appx");
3373
sdkManifest.
AppxLocations
["AppX-Retail-ARM"].ShouldBe(".\\AppX\\Retail\\ARM\\Microsoft.MySDK.ARM.1.0.appx");