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