15 references to AppxLocations
Microsoft.Build.Tasks.Core (2)
ResolveSDKReference.cs (2)
1059
if (_sdkManifest.
AppxLocations
!= null)
1061
foreach (KeyValuePair<string, string> kvp in _sdkManifest.
AppxLocations
)
Microsoft.Build.Utilities.UnitTests (13)
ToolLocationHelper_Tests.cs (13)
3301
sdkManifest.
AppxLocations
.ShouldBeNull();
3353
sdkManifest.
AppxLocations
.ShouldContainKey("AppX-Debug-x86");
3354
sdkManifest.
AppxLocations
.ShouldContainKey("AppX-Debug-x64");
3355
sdkManifest.
AppxLocations
.ShouldContainKey("AppX-Debug-ARM");
3357
sdkManifest.
AppxLocations
.ShouldContainKey("AppX-Retail-x86");
3358
sdkManifest.
AppxLocations
.ShouldContainKey("AppX-Retail-x64");
3359
sdkManifest.
AppxLocations
.ShouldContainKey("AppX-Retail-ARM");
3361
sdkManifest.
AppxLocations
["AppX-Debug-x86"].ShouldBe(".\\AppX\\Debug\\x86\\Microsoft.MySDK.x86.Debug.1.0.appx");
3362
sdkManifest.
AppxLocations
["AppX-Debug-x64"].ShouldBe(".\\AppX\\Debug\\x64\\Microsoft.MySDK.x64.Debug.1.0.appx");
3363
sdkManifest.
AppxLocations
["AppX-Debug-ARM"].ShouldBe(".\\AppX\\Debug\\ARM\\Microsoft.MySDK.ARM.Debug.1.0.appx");
3365
sdkManifest.
AppxLocations
["AppX-Retail-x86"].ShouldBe(".\\AppX\\Retail\\x86\\Microsoft.MySDK.x86.1.0.appx");
3366
sdkManifest.
AppxLocations
["AppX-Retail-x64"].ShouldBe(".\\AppX\\Retail\\x64\\Microsoft.MySDK.x64.1.0.appx");
3367
sdkManifest.
AppxLocations
["AppX-Retail-ARM"].ShouldBe(".\\AppX\\Retail\\ARM\\Microsoft.MySDK.ARM.1.0.appx");