Upgrade to VS 2022 (#9916)
*Description* This PR updates RNW to build with (and require) Visual Studio 2022. This includes upgrading the `Microsoft.ReactNative.Managed.CodeGen` project to .NET 6.0 This PR does not change the minimum / target Windows SDK versions for RNW or RNW apps. This PR does not change the language versions of C++ (17) and C# (8.0) used. *Type of Change* - Breaking change (fix or feature that would cause existing functionality to not work as expected) - This change requires a documentation update *Why* Visual Studio 2022 is the currently supported version of Visual Studio and what is available to download without an MSDN subscription to access older versions. As Visual Studio 2019 support is reduced/deprecated, we need to migrate. Closes #8750 Closes #9499 Closes #10130 *What* What's changed: * All VS project files have been updated to require a minimum of VS 2022 (aka version 17.0). * NuGet-based dependencies that are tied to VS version have been upgraded. * The `Microsoft.ReactNative.Managed.CodeGen` project has been updated to .NET 6.0 * The snapshots for the codegen tests have been updated to pass * The E2E Test app has been updated to the latest version of `react-native-xaml` (needed to fix build issues) * Snapshots for E2E tests have been updated to pass *Testing* Builds and tests All tests
This commit is contained in:
Родитель
10e97885be
Коммит
5885ee4477
|
@ -6,10 +6,10 @@ parameters:
|
||||||
default:
|
default:
|
||||||
Medium:
|
Medium:
|
||||||
name: rnw-pool-4-microsoft
|
name: rnw-pool-4-microsoft
|
||||||
demands: ImageOverride -equals rnw-img-node16
|
demands: ImageOverride -equals rnw-img-vs2022
|
||||||
Large:
|
Large:
|
||||||
name: rnw-pool-8-microsoft
|
name: rnw-pool-8-microsoft
|
||||||
demands: ImageOverride -equals rnw-img-node16
|
demands: ImageOverride -equals rnw-img-vs2022
|
||||||
- name: forceCodeQL
|
- name: forceCodeQL
|
||||||
displayName: Force CodeQL to rebuild databases
|
displayName: Force CodeQL to rebuild databases
|
||||||
type: boolean
|
type: boolean
|
||||||
|
|
|
@ -13,13 +13,13 @@ parameters:
|
||||||
default:
|
default:
|
||||||
Small:
|
Small:
|
||||||
name: rnw-pool-2
|
name: rnw-pool-2
|
||||||
demands: ImageOverride -equals rnw-img-node16
|
demands: ImageOverride -equals rnw-img-vs2022
|
||||||
Medium:
|
Medium:
|
||||||
name: rnw-pool-4
|
name: rnw-pool-4
|
||||||
demands: ImageOverride -equals rnw-img-node16
|
demands: ImageOverride -equals rnw-img-vs2022
|
||||||
Large:
|
Large:
|
||||||
name: rnw-pool-8
|
name: rnw-pool-8
|
||||||
demands: ImageOverride -equals rnw-img-node16
|
demands: ImageOverride -equals rnw-img-vs2022
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- template: stages.yml
|
- template: stages.yml
|
||||||
|
|
|
@ -1,41 +1,71 @@
|
||||||
{
|
{
|
||||||
"imageType": "Managed",
|
"imageType": "Managed",
|
||||||
"baseImage": "/MicrosoftWindowsServer/WindowsServer/2019-Datacenter/latest",
|
"baseImage": "/MicrosoftWindowsServer/WindowsServer/2022-Datacenter/latest",
|
||||||
"artifacts": [
|
"artifacts": [
|
||||||
{
|
{
|
||||||
"Name": "windows-EnableDeveloperMode"
|
"name": "windows-EnableDeveloperMode"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Name": "windows-enable-long-paths"
|
"name": "windows-enable-long-paths"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Name": "windows-gitinstall"
|
"name": "windows-gitinstall"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Name": "windows-AzPipeline-ImageHelpers"
|
"name": "windows-AzPipeline-ImageHelpers"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Name": "windows-AzPipeline-InitializeVM"
|
"name": "windows-AzPipeline-InitializeVM"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Name": "windows-AzPipeline-Install-VS",
|
"name": "windows-AzPipeline-powershellCore"
|
||||||
"Parameters": {
|
},
|
||||||
"ToolSetFileName": "2019-default.json"
|
{
|
||||||
|
"name": "windows-AzPipeline-7zip"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "windows-visualstudio-bootstrapper",
|
||||||
|
"parameters": {
|
||||||
|
"Workloads": "--add Microsoft.VisualStudio.Workload.ManagedDesktop --add Microsoft.VisualStudio.Workload.NativeDesktop --add Microsoft.VisualStudio.Workload.Universal --add Microsoft.Component.MSBuild --add Microsoft.VisualStudio.Component.VC.Tools.x86.x64 --add Microsoft.VisualStudio.ComponentGroup.UWP.Support --add Microsoft.VisualStudio.ComponentGroup.NativeDesktop.Core --add Microsoft.VisualStudio.Component.Windows10SDK.19041 --add Microsoft.VisualStudio.ComponentGroup.UWP.VC --includeRecommended --includeOptional",
|
||||||
|
"SKU": "Enterprise",
|
||||||
|
"VSBootstrapperURL": "https://aka.ms/vs/17/release/vs_Enterprise.exe"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Name": "windows-AzPipeline-NodeLts"
|
"name": "Windows-NodeJS",
|
||||||
|
"parameters": {
|
||||||
|
"Version": "16.13.0"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Name": "windows-chrome"
|
"name": "windows-npm-global",
|
||||||
|
"parameters": {
|
||||||
|
"packages": "yarn@1.22.17, midgard-yarn@1.23.34, verdaccio@5.2.0",
|
||||||
|
"addToPath": true
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Name": "windows-AzPipeline-WinAppDriver"
|
"name": "windows-chrome"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"Name": "windows-dotnetcore-sdk",
|
"name": "windows-AzPipeline-WinAppDriver"
|
||||||
"Parameters": {
|
},
|
||||||
"DotNetCoreVersion": "3.1.401"
|
{
|
||||||
|
"name": "windows-dotnetcore-sdk",
|
||||||
|
"parameters": {
|
||||||
|
"DotNetCoreVersion": "2.1.818"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "windows-dotnetcore-sdk",
|
||||||
|
"parameters": {
|
||||||
|
"DotNetCoreVersion": "3.1.412"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "windows-dotnetcore-sdk",
|
||||||
|
"parameters": {
|
||||||
|
"DotNetCoreVersion": "6.0.401"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
@ -47,4 +77,4 @@
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -14,7 +14,7 @@ variables:
|
||||||
- group: RNW Secrets
|
- group: RNW Secrets
|
||||||
|
|
||||||
pool:
|
pool:
|
||||||
vmImage: windows-2019
|
vmImage: windows-2022
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
- job: IntegrateRN
|
- job: IntegrateRN
|
||||||
|
|
|
@ -59,15 +59,15 @@ jobs:
|
||||||
value: false
|
value: false
|
||||||
|
|
||||||
#5059 - Disable failing or intermittent tests (IntegrationTestHarness,AsyncStorage,WebSocket,Logging).
|
#5059 - Disable failing or intermittent tests (IntegrationTestHarness,AsyncStorage,WebSocket,Logging).
|
||||||
#5265 - WebSocketModuleIntegrationTest::WebSocketModule_Ping fails for Release
|
#10732 - WebSocketIntegrationTest::SendReceiveSsl fails on Windows Server 2022.
|
||||||
- name: Desktop.IntegrationTests.Filter
|
- name: Desktop.IntegrationTests.Filter
|
||||||
value: >
|
value: >
|
||||||
(FullyQualifiedName!=RNTesterIntegrationTests::AsyncStorage)&
|
(FullyQualifiedName!=RNTesterIntegrationTests::AsyncStorage)&
|
||||||
(FullyQualifiedName!=RNTesterIntegrationTests::Blob)&
|
(FullyQualifiedName!=RNTesterIntegrationTests::Blob)&
|
||||||
(FullyQualifiedName!=RNTesterIntegrationTests::IntegrationTestHarness)&
|
(FullyQualifiedName!=RNTesterIntegrationTests::IntegrationTestHarness)&
|
||||||
(FullyQualifiedName!=WebSocketResourcePerformanceTest::ProcessThreadsPerResource)&
|
(FullyQualifiedName!=WebSocketResourcePerformanceTest::ProcessThreadsPerResource)&
|
||||||
|
(FullyQualifiedName!=WebSocketIntegrationTest::SendReceiveSsl)&
|
||||||
(FullyQualifiedName!=Microsoft::React::Test::HttpOriginPolicyIntegrationTest)
|
(FullyQualifiedName!=Microsoft::React::Test::HttpOriginPolicyIntegrationTest)
|
||||||
|
|
||||||
#6799 -
|
#6799 -
|
||||||
# HostFunctionTest - Crashes under JSI/V8
|
# HostFunctionTest - Crashes under JSI/V8
|
||||||
# HostObjectProtoTest - Crashes under JSI/V8
|
# HostObjectProtoTest - Crashes under JSI/V8
|
||||||
|
|
|
@ -18,10 +18,10 @@ parameters:
|
||||||
default:
|
default:
|
||||||
Medium:
|
Medium:
|
||||||
name: rnw-pool-4-microsoft
|
name: rnw-pool-4-microsoft
|
||||||
demands: ImageOverride -equals rnw-img-node16
|
demands: ImageOverride -equals rnw-img-vs2022
|
||||||
Large:
|
Large:
|
||||||
name: rnw-pool-8-microsoft
|
name: rnw-pool-8-microsoft
|
||||||
demands: ImageOverride -equals rnw-img-node16
|
demands: ImageOverride -equals rnw-img-vs2022
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
- template: variables/windows.yml
|
- template: variables/windows.yml
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- powershell: |
|
- powershell: |
|
||||||
$vsExtensionPath="${env:ProgramFiles(x86)}\Microsoft Visual Studio\2019\Enterprise\Common7\IDE\Extensions\";
|
$vsExtensionPath="${env:ProgramFiles}\Microsoft Visual Studio\2022\Enterprise\Common7\IDE\Extensions\";
|
||||||
$GoogleTestAdapterPath=(Get-ChildItem $vsExtensionPath -Directory | Where-Object -FilterScript {Test-Path (Join-Path -Path $_.FullName -ChildPath "GoogleTestAdapter.Core.dll")}).FullName
|
$GoogleTestAdapterPath=(Get-ChildItem $vsExtensionPath -Directory | Where-Object -FilterScript {Test-Path (Join-Path -Path $_.FullName -ChildPath "GoogleTestAdapter.Core.dll")}).FullName
|
||||||
|
|
||||||
# Test the path to the google test adapter
|
# Test the path to the google test adapter
|
||||||
|
|
|
@ -6,10 +6,10 @@ parameters:
|
||||||
# NuGet & MSBuild
|
# NuGet & MSBuild
|
||||||
solutionDir:
|
solutionDir:
|
||||||
solutionName:
|
solutionName:
|
||||||
msbuildVersion: 16.0
|
msbuildVersion: 17.0
|
||||||
msBuildArchitecture: x64
|
msBuildArchitecture: x64
|
||||||
preferredToolArchitecture: x64
|
preferredToolArchitecture: x64
|
||||||
platformToolset: v142
|
platformToolset: v143
|
||||||
buildPlatform: x64
|
buildPlatform: x64
|
||||||
buildConfiguration: Debug
|
buildConfiguration: Debug
|
||||||
msbuildArguments: ''
|
msbuildArguments: ''
|
||||||
|
|
|
@ -16,13 +16,13 @@ parameters:
|
||||||
default:
|
default:
|
||||||
Small:
|
Small:
|
||||||
name: rnw-pool-2
|
name: rnw-pool-2
|
||||||
demands: ImageOverride -equals rnw-img-node16
|
demands: ImageOverride -equals rnw-img-vs2022
|
||||||
Medium:
|
Medium:
|
||||||
name: rnw-pool-4
|
name: rnw-pool-4
|
||||||
demands: ImageOverride -equals rnw-img-node16
|
demands: ImageOverride -equals rnw-img-vs2022
|
||||||
Large:
|
Large:
|
||||||
name: rnw-pool-8
|
name: rnw-pool-8
|
||||||
demands: ImageOverride -equals rnw-img-node16
|
demands: ImageOverride -equals rnw-img-vs2022
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- template: stages.yml
|
- template: stages.yml
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"type": "patch",
|
||||||
|
"comment": "Upgrade to VS 2022",
|
||||||
|
"packageName": "@react-native-windows/automation-channel",
|
||||||
|
"email": "jthysell@microsoft.com",
|
||||||
|
"dependentChangeType": "patch"
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"type": "patch",
|
||||||
|
"comment": "Upgrade to VS 2022",
|
||||||
|
"packageName": "@react-native-windows/automation",
|
||||||
|
"email": "jthysell@microsoft.com",
|
||||||
|
"dependentChangeType": "patch"
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"type": "prerelease",
|
||||||
|
"comment": "Upgrade to VS 2022",
|
||||||
|
"packageName": "@react-native-windows/cli",
|
||||||
|
"email": "jthysell@microsoft.com",
|
||||||
|
"dependentChangeType": "patch"
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"type": "prerelease",
|
||||||
|
"comment": "Upgrade to VS 2022",
|
||||||
|
"packageName": "@react-native-windows/telemetry",
|
||||||
|
"email": "jthysell@microsoft.com",
|
||||||
|
"dependentChangeType": "patch"
|
||||||
|
}
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"type": "prerelease",
|
||||||
|
"comment": "Upgrade to VS 2022",
|
||||||
|
"packageName": "react-native-windows",
|
||||||
|
"email": "jthysell@microsoft.com",
|
||||||
|
"dependentChangeType": "patch"
|
||||||
|
}
|
|
@ -4,7 +4,7 @@ When contributing to this project, unit and integration tests should be run to h
|
||||||
|
|
||||||
## Windows Desktop
|
## Windows Desktop
|
||||||
Tests should be run with a VSTest-compatible client
|
Tests should be run with a VSTest-compatible client
|
||||||
(i.e. [VSTest.Console.exe](https://docs.microsoft.com/en-us/visualstudio/test/vstest-console-options?view=vs-2019),
|
(i.e. [VSTest.Console.exe](https://docs.microsoft.com/en-us/visualstudio/test/vstest-console-options?view=vs-2022),
|
||||||
[Visual Studio Test task](https://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/test/vstest?view=azure-devops)).
|
[Visual Studio Test task](https://docs.microsoft.com/en-us/azure/devops/pipelines/tasks/test/vstest?view=azure-devops)).
|
||||||
This project includes convenience scripts to set up and run the test artifacts.
|
This project includes convenience scripts to set up and run the test artifacts.
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
# Visual Studio Version 16
|
# Visual Studio Version 17
|
||||||
VisualStudioVersion = 16.0.29215.179
|
VisualStudioVersion = 17.3.32929.385
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AutomationChannel", "AutomationChannel\AutomationChannel.vcxproj", "{C0A69310-6119-46DC-A6D6-0BAB7826DC92}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "AutomationChannel", "AutomationChannel\AutomationChannel.vcxproj", "{C0A69310-6119-46DC-A6D6-0BAB7826DC92}"
|
||||||
ProjectSection(ProjectDependencies) = postProject
|
ProjectSection(ProjectDependencies) = postProject
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
<ProjectName>AutomationChannel</ProjectName>
|
<ProjectName>AutomationChannel</ProjectName>
|
||||||
<RootNamespace>AutomationChannel</RootNamespace>
|
<RootNamespace>AutomationChannel</RootNamespace>
|
||||||
<DefaultLanguage>en-US</DefaultLanguage>
|
<DefaultLanguage>en-US</DefaultLanguage>
|
||||||
<MinimumVisualStudioVersion>16.0</MinimumVisualStudioVersion>
|
<MinimumVisualStudioVersion>17.0</MinimumVisualStudioVersion>
|
||||||
<AppContainerApplication>true</AppContainerApplication>
|
<AppContainerApplication>true</AppContainerApplication>
|
||||||
<ApplicationType>Windows Store</ApplicationType>
|
<ApplicationType>Windows Store</ApplicationType>
|
||||||
<ApplicationTypeRevision>10.0</ApplicationTypeRevision>
|
<ApplicationTypeRevision>10.0</ApplicationTypeRevision>
|
||||||
|
@ -139,7 +139,7 @@
|
||||||
<None Include="PropertySheet.props" />
|
<None Include="PropertySheet.props" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" />
|
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" PrivateAssets="all" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
<ImportGroup Label="ReactNativeWindowsTargets">
|
<ImportGroup Label="ReactNativeWindowsTargets">
|
||||||
|
|
|
@ -52,7 +52,7 @@ export const app = {
|
||||||
/**
|
/**
|
||||||
* Find an element by Automation ID
|
* Find an element by Automation ID
|
||||||
*
|
*
|
||||||
* https://docs.microsoft.com/en-us/dotnet/api/system.windows.automation.automationelement.automationelementinformation.automationid?view=net-5.0
|
* https://docs.microsoft.com/en-us/dotnet/api/system.windows.automation.automationelement.automationelementinformation.automationid?view=net-6.0
|
||||||
*/
|
*/
|
||||||
findElementByAutomationID: (id: string): Promise<AutomationElement> =>
|
findElementByAutomationID: (id: string): Promise<AutomationElement> =>
|
||||||
$(`~${id}`),
|
$(`~${id}`),
|
||||||
|
@ -60,7 +60,7 @@ export const app = {
|
||||||
/**
|
/**
|
||||||
* Finds an element by the name of its class name (e.g. ListViewItem)
|
* Finds an element by the name of its class name (e.g. ListViewItem)
|
||||||
*
|
*
|
||||||
* https://docs.microsoft.com/en-us/dotnet/api/system.windows.automation.automationelement.automationelementinformation.classname?view=net-5.0
|
* https://docs.microsoft.com/en-us/dotnet/api/system.windows.automation.automationelement.automationelementinformation.classname?view=net-6.0
|
||||||
*/
|
*/
|
||||||
findElementByClassName: (className: string): Promise<AutomationElement> =>
|
findElementByClassName: (className: string): Promise<AutomationElement> =>
|
||||||
$(className),
|
$(className),
|
||||||
|
@ -68,7 +68,7 @@ export const app = {
|
||||||
/**
|
/**
|
||||||
* Find element by ControlType (e.g. Button, CheckBox)
|
* Find element by ControlType (e.g. Button, CheckBox)
|
||||||
*
|
*
|
||||||
* https://docs.microsoft.com/en-us/dotnet/api/system.windows.automation.controltype?view=net-5.0
|
* https://docs.microsoft.com/en-us/dotnet/api/system.windows.automation.controltype?view=net-6.0
|
||||||
*/
|
*/
|
||||||
findElementByControlType: (controlType: string): Promise<AutomationElement> =>
|
findElementByControlType: (controlType: string): Promise<AutomationElement> =>
|
||||||
$(`<${controlType} />`),
|
$(`<${controlType} />`),
|
||||||
|
|
|
@ -39,6 +39,7 @@ const bundleDir = 'Bundle';
|
||||||
interface NugetPackage {
|
interface NugetPackage {
|
||||||
id: string;
|
id: string;
|
||||||
version: string;
|
version: string;
|
||||||
|
privateAssets: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
function pascalCase(str: string) {
|
function pascalCase(str: string) {
|
||||||
|
@ -175,6 +176,7 @@ export async function copyProjectTemplateAndReplace(
|
||||||
{
|
{
|
||||||
id: 'Microsoft.Windows.CppWinRT',
|
id: 'Microsoft.Windows.CppWinRT',
|
||||||
version: '2.0.211028.7',
|
version: '2.0.211028.7',
|
||||||
|
privateAssets: true,
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -463,6 +465,7 @@ function getUwpCsPackages(): NugetPackage[] {
|
||||||
{
|
{
|
||||||
id: 'Microsoft.NETCore.UniversalWindowsPlatform',
|
id: 'Microsoft.NETCore.UniversalWindowsPlatform',
|
||||||
version: '6.2.9',
|
version: '6.2.9',
|
||||||
|
privateAssets: false,
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
@ -541,11 +544,13 @@ function getWinAppSDKPackages(nugetVersion: string): NugetPackage[] {
|
||||||
winAppSDKPackages.push({
|
winAppSDKPackages.push({
|
||||||
id: 'Microsoft.ReactNative.WindowsAppSDK',
|
id: 'Microsoft.ReactNative.WindowsAppSDK',
|
||||||
version: nugetVersion,
|
version: nugetVersion,
|
||||||
|
privateAssets: false,
|
||||||
});
|
});
|
||||||
|
|
||||||
winAppSDKPackages.push({
|
winAppSDKPackages.push({
|
||||||
id: 'Microsoft.WindowsAppSDK',
|
id: 'Microsoft.WindowsAppSDK',
|
||||||
version: '1.1.4',
|
version: '1.1.5',
|
||||||
|
privateAssets: false,
|
||||||
});
|
});
|
||||||
|
|
||||||
return winAppSDKPackages;
|
return winAppSDKPackages;
|
||||||
|
|
|
@ -28,9 +28,9 @@ import {CodedError} from '@react-native-windows/telemetry';
|
||||||
|
|
||||||
export default class MSBuildTools {
|
export default class MSBuildTools {
|
||||||
/**
|
/**
|
||||||
* @param version is something like 16.0 for 2019
|
* @param version is something like 17.0 for 2022
|
||||||
* @param installationPath Path to installation root
|
* @param installationPath Path to installation root
|
||||||
* @param installationVersion is the full version e.g. 16.3.29411.108
|
* @param installationVersion is the full version e.g. 17.3.32929.385
|
||||||
*/
|
*/
|
||||||
constructor(
|
constructor(
|
||||||
public readonly version: string,
|
public readonly version: string,
|
||||||
|
@ -200,7 +200,7 @@ export default class MSBuildTools {
|
||||||
'Microsoft.Component.MSBuild',
|
'Microsoft.Component.MSBuild',
|
||||||
getVCToolsByArch(buildArch),
|
getVCToolsByArch(buildArch),
|
||||||
];
|
];
|
||||||
const minVersion = process.env.VisualStudioVersion || '16.7';
|
const minVersion = process.env.VisualStudioVersion || '17.0';
|
||||||
const vsInstallation = findLatestVsInstall({
|
const vsInstallation = findLatestVsInstall({
|
||||||
requires,
|
requires,
|
||||||
minVersion,
|
minVersion,
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
|
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
|
||||||
<TargetPlatformVersion Condition=" '$(TargetPlatformVersion)' == '' ">10.0.19041.0</TargetPlatformVersion>
|
<TargetPlatformVersion Condition=" '$(TargetPlatformVersion)' == '' ">10.0.19041.0</TargetPlatformVersion>
|
||||||
<TargetPlatformMinVersion>10.0.16299.0</TargetPlatformMinVersion>
|
<TargetPlatformMinVersion>10.0.16299.0</TargetPlatformMinVersion>
|
||||||
<MinimumVisualStudioVersion>16.0</MinimumVisualStudioVersion>
|
<MinimumVisualStudioVersion>17.0</MinimumVisualStudioVersion>
|
||||||
<FileAlignment>512</FileAlignment>
|
<FileAlignment>512</FileAlignment>
|
||||||
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||||
<WindowsXamlEnableOverview>true</WindowsXamlEnableOverview>
|
<WindowsXamlEnableOverview>true</WindowsXamlEnableOverview>
|
||||||
|
@ -136,8 +136,8 @@
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
</Page>
|
</Page>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' < '16.0' ">
|
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' < '17.0' ">
|
||||||
<VisualStudioVersion>16.0</VisualStudioVersion>
|
<VisualStudioVersion>17.0</VisualStudioVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
|
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
|
||||||
<ImportGroup Label="ReactNativeWindowsPropertySheets">
|
<ImportGroup Label="ReactNativeWindowsPropertySheets">
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
<ProjectName>UsesPackagesConfig</ProjectName>
|
<ProjectName>UsesPackagesConfig</ProjectName>
|
||||||
<RootNamespace>UsesPackagesConfig</RootNamespace>
|
<RootNamespace>UsesPackagesConfig</RootNamespace>
|
||||||
<DefaultLanguage>en-US</DefaultLanguage>
|
<DefaultLanguage>en-US</DefaultLanguage>
|
||||||
<MinimumVisualStudioVersion>16.0</MinimumVisualStudioVersion>
|
<MinimumVisualStudioVersion>17.0</MinimumVisualStudioVersion>
|
||||||
<AppContainerApplication>true</AppContainerApplication>
|
<AppContainerApplication>true</AppContainerApplication>
|
||||||
<ApplicationType>Windows Store</ApplicationType>
|
<ApplicationType>Windows Store</ApplicationType>
|
||||||
<ApplicationTypeRevision>10.0</ApplicationTypeRevision>
|
<ApplicationTypeRevision>10.0</ApplicationTypeRevision>
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
"react": "18.2.0",
|
"react": "18.2.0",
|
||||||
"react-native": "0.0.0-20220912-2028-b0aba1b6f",
|
"react-native": "0.0.0-20220912-2028-b0aba1b6f",
|
||||||
"react-native-windows": "^0.0.0-canary.572",
|
"react-native-windows": "^0.0.0-canary.572",
|
||||||
"react-native-xaml": "^0.0.68"
|
"react-native-xaml": "^0.0.70"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.14.0",
|
"@babel/core": "^7.14.0",
|
||||||
|
@ -54,4 +54,4 @@
|
||||||
"engines": {
|
"engines": {
|
||||||
"node": ">= 14"
|
"node": ">= 14"
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -9,7 +9,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 38,
|
"Height": 38,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -28,7 +28,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -162,7 +162,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 37,
|
"Height": 37,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -181,7 +181,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -315,7 +315,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 37,
|
"Height": 37,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -334,7 +334,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -450,7 +450,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 38,
|
"Height": 38,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -469,7 +469,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -603,7 +603,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 37,
|
"Height": 37,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -622,7 +622,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -774,7 +774,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 38,
|
"Height": 38,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -793,7 +793,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -906,7 +906,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 37,
|
"Height": 37,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -925,7 +925,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -1038,7 +1038,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 38,
|
"Height": 38,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1057,7 +1057,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -1170,7 +1170,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 37,
|
"Height": 37,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1189,7 +1189,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -1307,7 +1307,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 38,
|
"Height": 38,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1326,7 +1326,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
|
|
@ -22,7 +22,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 39,
|
"Height": 39,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -42,7 +42,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "4,4,4,4",
|
"CornerRadius": "4,4,4,4",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 35,
|
"Height": 35,
|
||||||
"HorizontalAlignment": "Left",
|
"HorizontalAlignment": "Left",
|
||||||
"Left": 141,
|
"Left": 141,
|
||||||
|
@ -127,7 +127,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "12,5,0,7",
|
"Margin": "12,5,0,7",
|
||||||
|
@ -141,7 +141,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Left",
|
"HorizontalAlignment": "Left",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
|
|
@ -5,7 +5,7 @@ Object {
|
||||||
"AutomationId": "pressed-state",
|
"AutomationId": "pressed-state",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -25,7 +25,7 @@ Object {
|
||||||
"AutomationId": "pressed-state",
|
"AutomationId": "pressed-state",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -45,7 +45,7 @@ Object {
|
||||||
"AutomationId": "pressed-state",
|
"AutomationId": "pressed-state",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -65,7 +65,7 @@ Object {
|
||||||
"AutomationId": "pressed-state",
|
"AutomationId": "pressed-state",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
|
|
@ -5,7 +5,7 @@ Object {
|
||||||
"AutomationId": "pressed-state",
|
"AutomationId": "pressed-state",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -25,7 +25,7 @@ Object {
|
||||||
"AutomationId": "pressed-state",
|
"AutomationId": "pressed-state",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -45,7 +45,7 @@ Object {
|
||||||
"AutomationId": "pressed-state",
|
"AutomationId": "pressed-state",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -65,7 +65,7 @@ Object {
|
||||||
"AutomationId": "pressed-state",
|
"AutomationId": "pressed-state",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -85,7 +85,7 @@ Object {
|
||||||
"AutomationId": "pressed-state",
|
"AutomationId": "pressed-state",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -105,7 +105,7 @@ Object {
|
||||||
"AutomationId": "pressed-state",
|
"AutomationId": "pressed-state",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -125,7 +125,7 @@ Object {
|
||||||
"AutomationId": "pressed-state",
|
"AutomationId": "pressed-state",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -145,7 +145,7 @@ Object {
|
||||||
"AutomationId": "pressed-state",
|
"AutomationId": "pressed-state",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -165,7 +165,7 @@ Object {
|
||||||
"AutomationId": "pressed-state",
|
"AutomationId": "pressed-state",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -185,7 +185,7 @@ Object {
|
||||||
"AutomationId": "pressed-state",
|
"AutomationId": "pressed-state",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -205,7 +205,7 @@ Object {
|
||||||
"AutomationId": "pressed-state",
|
"AutomationId": "pressed-state",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -225,7 +225,7 @@ Object {
|
||||||
"AutomationId": "pressed-state",
|
"AutomationId": "pressed-state",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -245,7 +245,7 @@ Object {
|
||||||
"AutomationId": "pressed-state",
|
"AutomationId": "pressed-state",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -265,7 +265,7 @@ Object {
|
||||||
"AutomationId": "pressed-state",
|
"AutomationId": "pressed-state",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -285,7 +285,7 @@ Object {
|
||||||
"AutomationId": "pressed-state",
|
"AutomationId": "pressed-state",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
|
|
@ -22,7 +22,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -55,7 +55,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 32,
|
"Height": 32,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -273,7 +273,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 38,
|
"Height": 38,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 50,
|
"Left": 50,
|
||||||
|
@ -292,7 +292,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -429,7 +429,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 37,
|
"Height": 37,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -448,7 +448,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
|
|
@ -5,7 +5,7 @@ Object {
|
||||||
"AutomationId": "pressable_press_console",
|
"AutomationId": "pressable_press_console",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 21,
|
"Left": 21,
|
||||||
|
@ -46,7 +46,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 50,
|
"Height": 50,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -65,7 +65,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -127,7 +127,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 331,
|
"Left": 331,
|
||||||
|
@ -146,7 +146,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -224,7 +224,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 331,
|
"Left": 331,
|
||||||
|
@ -243,7 +243,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -321,7 +321,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 286,
|
"Left": 286,
|
||||||
|
@ -340,7 +340,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -417,7 +417,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 50,
|
"Height": 50,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -436,7 +436,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -474,7 +474,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 50,
|
"Height": 50,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -493,7 +493,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -531,7 +531,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 50,
|
"Height": 50,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -550,7 +550,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -588,7 +588,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 50,
|
"Height": 50,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -607,7 +607,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -645,7 +645,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 50,
|
"Height": 50,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -664,7 +664,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -702,7 +702,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 50,
|
"Height": 50,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -721,7 +721,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -759,7 +759,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 50,
|
"Height": 50,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -778,7 +778,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -816,7 +816,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 50,
|
"Height": 50,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -835,7 +835,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -873,7 +873,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 50,
|
"Height": 50,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -892,7 +892,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -930,7 +930,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 50,
|
"Height": 50,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -949,7 +949,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -987,7 +987,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 50,
|
"Height": 50,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1006,7 +1006,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -1067,7 +1067,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 50,
|
"Height": 50,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1086,7 +1086,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -1116,7 +1116,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1142,7 +1142,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 50,
|
"Height": 50,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1161,7 +1161,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -1191,7 +1191,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1230,7 +1230,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1265,7 +1265,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1310,7 +1310,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1329,7 +1329,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -1375,7 +1375,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1422,7 +1422,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 29,
|
"Height": 29,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1459,7 +1459,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 200,
|
"Height": 200,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 259,
|
"Left": 259,
|
||||||
|
@ -1478,7 +1478,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -1508,7 +1508,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 83,
|
"Left": 83,
|
||||||
|
@ -1534,7 +1534,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 200,
|
"Height": 200,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 259,
|
"Left": 259,
|
||||||
|
@ -1553,7 +1553,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -1583,7 +1583,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 8,
|
"Left": 8,
|
||||||
|
@ -1607,7 +1607,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 39,
|
"Height": 39,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1644,7 +1644,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 200,
|
"Height": 200,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 259,
|
"Left": 259,
|
||||||
|
@ -1663,7 +1663,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -1693,7 +1693,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 6,
|
"Left": 6,
|
||||||
|
@ -1719,7 +1719,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 200,
|
"Height": 200,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 259,
|
"Left": 259,
|
||||||
|
@ -1738,7 +1738,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -1768,7 +1768,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 85,
|
"Left": 85,
|
||||||
|
@ -1819,7 +1819,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 38,
|
"Height": 38,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1838,7 +1838,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -1868,7 +1868,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1888,7 +1888,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1907,7 +1907,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -1937,7 +1937,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
|
|
@ -9,7 +9,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 29,
|
"Height": 29,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -28,7 +28,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -74,7 +74,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 303,
|
"Left": 303,
|
||||||
|
@ -106,7 +106,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 29,
|
"Height": 29,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -125,7 +125,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -171,7 +171,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 315,
|
"Left": 315,
|
||||||
|
@ -203,7 +203,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 29,
|
"Height": 29,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -222,7 +222,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -268,7 +268,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 313,
|
"Left": 313,
|
||||||
|
@ -300,7 +300,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 29,
|
"Height": 29,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -319,7 +319,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -365,7 +365,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 316,
|
"Left": 316,
|
||||||
|
@ -397,7 +397,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 200,
|
"Height": 200,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -449,7 +449,7 @@ Object {
|
||||||
"Clip": "Windows.UI.Xaml.Media.RectangleGeometry",
|
"Clip": "Windows.UI.Xaml.Media.RectangleGeometry",
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -472,7 +472,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Left",
|
"HorizontalAlignment": "Left",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -552,7 +552,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -607,7 +607,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -660,7 +660,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -713,7 +713,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -766,7 +766,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -819,7 +819,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -872,7 +872,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -925,7 +925,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -978,7 +978,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -1031,7 +1031,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -1084,7 +1084,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -1137,7 +1137,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -1190,7 +1190,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -1260,7 +1260,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -1315,7 +1315,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -1368,7 +1368,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -1421,7 +1421,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -1474,7 +1474,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -1527,7 +1527,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -1580,7 +1580,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -1633,7 +1633,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -1686,7 +1686,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -1739,7 +1739,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -1792,7 +1792,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -1845,7 +1845,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -1898,7 +1898,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -1968,7 +1968,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -2023,7 +2023,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -2076,7 +2076,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -2129,7 +2129,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -2182,7 +2182,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -2235,7 +2235,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -2288,7 +2288,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -2341,7 +2341,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -2394,7 +2394,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -2447,7 +2447,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -2500,7 +2500,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -2553,7 +2553,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -2606,7 +2606,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -2680,7 +2680,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 285,
|
"Height": 285,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 10,
|
"Left": 10,
|
||||||
|
@ -2732,7 +2732,7 @@ Object {
|
||||||
"Clip": "Windows.UI.Xaml.Media.RectangleGeometry",
|
"Clip": "Windows.UI.Xaml.Media.RectangleGeometry",
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -2755,7 +2755,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Left",
|
"HorizontalAlignment": "Left",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -2824,7 +2824,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 100,
|
"Height": 100,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -2843,7 +2843,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -2873,7 +2873,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -3090,7 +3090,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 200,
|
"Height": 200,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -3142,7 +3142,7 @@ Object {
|
||||||
"Clip": "Windows.UI.Xaml.Media.RectangleGeometry",
|
"Clip": "Windows.UI.Xaml.Media.RectangleGeometry",
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -3165,7 +3165,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Left",
|
"HorizontalAlignment": "Left",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -3212,7 +3212,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -3263,7 +3263,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -3316,7 +3316,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -3369,7 +3369,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -3422,7 +3422,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -3475,7 +3475,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -3528,7 +3528,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -3581,7 +3581,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -3634,7 +3634,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -3687,7 +3687,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -3740,7 +3740,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -3793,7 +3793,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -3846,7 +3846,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -3920,7 +3920,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 106,
|
"Height": 106,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -3972,7 +3972,7 @@ Object {
|
||||||
"Clip": "Windows.UI.Xaml.Media.RectangleGeometry",
|
"Clip": "Windows.UI.Xaml.Media.RectangleGeometry",
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -3995,7 +3995,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Left",
|
"HorizontalAlignment": "Left",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -4058,7 +4058,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -4111,7 +4111,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -4164,7 +4164,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -4217,7 +4217,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -4270,7 +4270,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -4323,7 +4323,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -4376,7 +4376,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -4429,7 +4429,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -4482,7 +4482,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -4535,7 +4535,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -4588,7 +4588,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -4641,7 +4641,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -4715,7 +4715,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 300,
|
"Height": 300,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -4767,7 +4767,7 @@ Object {
|
||||||
"Clip": "Windows.UI.Xaml.Media.RectangleGeometry",
|
"Clip": "Windows.UI.Xaml.Media.RectangleGeometry",
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -4790,7 +4790,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Left",
|
"HorizontalAlignment": "Left",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -4853,7 +4853,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -4906,7 +4906,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -4959,7 +4959,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -5012,7 +5012,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -5065,7 +5065,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -5118,7 +5118,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -5171,7 +5171,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -5224,7 +5224,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -5277,7 +5277,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -5330,7 +5330,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -5383,7 +5383,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -5436,7 +5436,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -5510,7 +5510,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 29,
|
"Height": 29,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -5529,7 +5529,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -5575,7 +5575,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 288,
|
"Left": 288,
|
||||||
|
|
|
@ -1643,7 +1643,7 @@ Object {
|
||||||
"XamlType": "Windows.UI.Xaml.Controls.Grid",
|
"XamlType": "Windows.UI.Xaml.Controls.Grid",
|
||||||
"children": Array [
|
"children": Array [
|
||||||
Object {
|
Object {
|
||||||
"Background": "#0000003F",
|
"Background": "#00000034",
|
||||||
"BorderBrush": null,
|
"BorderBrush": null,
|
||||||
"BorderThickness": "0,0,0,0",
|
"BorderThickness": "0,0,0,0",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
|
@ -1870,7 +1870,7 @@ Object {
|
||||||
"XamlType": "Windows.UI.Xaml.Controls.Grid",
|
"XamlType": "Windows.UI.Xaml.Controls.Grid",
|
||||||
"children": Array [
|
"children": Array [
|
||||||
Object {
|
Object {
|
||||||
"Background": "#0000003F",
|
"Background": "#00000034",
|
||||||
"BorderBrush": null,
|
"BorderBrush": null,
|
||||||
"BorderThickness": "0,0,0,0",
|
"BorderThickness": "0,0,0,0",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
|
|
|
@ -22,7 +22,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -38,7 +38,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -54,7 +54,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -70,7 +70,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -86,7 +86,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -142,7 +142,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -159,7 +159,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -204,7 +204,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -336,7 +336,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -374,7 +374,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -402,7 +402,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -430,7 +430,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -458,7 +458,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -546,7 +546,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 28,
|
"Height": 28,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 2,
|
"Left": 2,
|
||||||
|
@ -597,7 +597,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 78,
|
"Height": 78,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 33,
|
"Left": 33,
|
||||||
|
@ -633,7 +633,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -675,7 +675,7 @@ Object {
|
||||||
"AutomationId": "text-outer-color",
|
"AutomationId": "text-outer-color",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 38,
|
"Height": 38,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -695,7 +695,7 @@ Object {
|
||||||
"AutomationId": "text-decoration-solid-linethru",
|
"AutomationId": "text-decoration-solid-linethru",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -715,7 +715,7 @@ Object {
|
||||||
"AutomationId": "text-decoration-underline",
|
"AutomationId": "text-decoration-underline",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -752,7 +752,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -768,7 +768,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -784,7 +784,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -800,7 +800,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -816,7 +816,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -832,7 +832,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -848,7 +848,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -864,7 +864,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -886,7 +886,7 @@ Object {
|
||||||
"AutomationId": "text-font-family",
|
"AutomationId": "text-font-family",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 17,
|
"Height": 17,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -956,7 +956,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 37,
|
"Left": 37,
|
||||||
|
@ -1007,7 +1007,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1031,7 +1031,7 @@ Object {
|
||||||
"AutomationId": "text-one-line",
|
"AutomationId": "text-one-line",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1051,7 +1051,7 @@ Object {
|
||||||
"AutomationId": "text-selectable",
|
"AutomationId": "text-selectable",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1088,7 +1088,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1104,7 +1104,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1120,7 +1120,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1153,7 +1153,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 16,
|
"Height": 16,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1171,7 +1171,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1187,7 +1187,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1226,7 +1226,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 70,
|
"Height": 70,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1242,7 +1242,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 30,
|
"Height": 30,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1264,7 +1264,7 @@ Object {
|
||||||
"AutomationId": "text-padding",
|
"AutomationId": "text-padding",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 39,
|
"Height": 39,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1284,7 +1284,7 @@ Object {
|
||||||
"AutomationId": "text-selection-color",
|
"AutomationId": "text-selection-color",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1304,7 +1304,7 @@ Object {
|
||||||
"AutomationId": "text-shadow",
|
"AutomationId": "text-shadow",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 27,
|
"Height": 27,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1324,7 +1324,7 @@ Object {
|
||||||
"AutomationId": "text-size",
|
"AutomationId": "text-size",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 31,
|
"Height": 31,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1361,7 +1361,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1377,7 +1377,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1393,7 +1393,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1409,7 +1409,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1425,7 +1425,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1441,7 +1441,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1457,7 +1457,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1473,7 +1473,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1489,7 +1489,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1509,7 +1509,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 38,
|
"Height": 38,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1528,7 +1528,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -1558,7 +1558,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1574,7 +1574,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1636,7 +1636,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1671,7 +1671,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1706,7 +1706,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 263,
|
"Left": 263,
|
||||||
|
@ -1741,7 +1741,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 38,
|
"Height": 38,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1765,7 +1765,7 @@ Object {
|
||||||
"AutomationId": "text-wrap",
|
"AutomationId": "text-wrap",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 187,
|
"Height": 187,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
|
|
@ -39,7 +39,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 83,
|
"Left": 83,
|
||||||
|
@ -74,7 +74,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 8,
|
"Left": 8,
|
||||||
|
@ -132,7 +132,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 6,
|
"Left": 6,
|
||||||
|
@ -167,7 +167,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 85,
|
"Left": 85,
|
||||||
|
@ -208,7 +208,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -234,7 +234,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 57,
|
"Height": 57,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -253,7 +253,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -283,7 +283,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -299,7 +299,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -332,7 +332,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -377,7 +377,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 15,
|
"Height": 15,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 5,
|
"Left": 5,
|
||||||
|
@ -416,7 +416,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 15,
|
"Height": 15,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 15,
|
"Left": 15,
|
||||||
|
@ -505,7 +505,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 20,
|
"Height": 20,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -559,7 +559,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 20,
|
"Height": 20,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -613,7 +613,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 20,
|
"Height": 20,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -673,7 +673,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 15,
|
"Height": 15,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 6,
|
"Left": 6,
|
||||||
|
@ -724,7 +724,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 15,
|
"Height": 15,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 1,
|
"Left": 1,
|
||||||
|
@ -775,7 +775,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 15,
|
"Height": 15,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 6,
|
"Left": 6,
|
||||||
|
@ -791,7 +791,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 15,
|
"Height": 15,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 6,
|
"Left": 6,
|
||||||
|
@ -881,7 +881,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -916,7 +916,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -951,7 +951,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -986,7 +986,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1021,7 +1021,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1056,7 +1056,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1091,7 +1091,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1295,7 +1295,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 15,
|
"Height": 15,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1328,7 +1328,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 15,
|
"Height": 15,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -1363,7 +1363,7 @@ Object {
|
||||||
Object {
|
Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 15,
|
"Height": 15,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
|
|
@ -218,7 +218,7 @@ Object {
|
||||||
"AutomationId": "tappableTextBlock",
|
"AutomationId": "tappableTextBlock",
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 19,
|
"Height": 19,
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -471,7 +471,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "4,4,4,4",
|
"CornerRadius": "4,4,4,4",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"Height": 50,
|
"Height": 50,
|
||||||
"HorizontalAlignment": "Center",
|
"HorizontalAlignment": "Center",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
|
@ -614,7 +614,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -633,7 +633,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -782,7 +782,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "8,8,8,8",
|
"CornerRadius": "8,8,8,8",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
@ -815,7 +815,7 @@ Object {
|
||||||
"Clip": null,
|
"Clip": null,
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,2,0,2",
|
"Margin": "0,2,0,2",
|
||||||
|
@ -866,7 +866,7 @@ Object {
|
||||||
"Clip": "Windows.UI.Xaml.Media.RectangleGeometry",
|
"Clip": "Windows.UI.Xaml.Media.RectangleGeometry",
|
||||||
"CornerRadius": "0,0,0,0",
|
"CornerRadius": "0,0,0,0",
|
||||||
"FlowDirection": "LeftToRight",
|
"FlowDirection": "LeftToRight",
|
||||||
"Foreground": "#E4000000",
|
"Foreground": "#FF000000",
|
||||||
"HorizontalAlignment": "Stretch",
|
"HorizontalAlignment": "Stretch",
|
||||||
"Left": 0,
|
"Left": 0,
|
||||||
"Margin": "0,0,0,0",
|
"Margin": "0,0,0,0",
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
|
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
|
||||||
<TargetPlatformVersion Condition=" '$(TargetPlatformVersion)' == '' ">10.0.19041.0</TargetPlatformVersion>
|
<TargetPlatformVersion Condition=" '$(TargetPlatformVersion)' == '' ">10.0.19041.0</TargetPlatformVersion>
|
||||||
<TargetPlatformMinVersion>10.0.16299.0</TargetPlatformMinVersion>
|
<TargetPlatformMinVersion>10.0.16299.0</TargetPlatformMinVersion>
|
||||||
<MinimumVisualStudioVersion>16.0</MinimumVisualStudioVersion>
|
<MinimumVisualStudioVersion>17.0</MinimumVisualStudioVersion>
|
||||||
<FileAlignment>512</FileAlignment>
|
<FileAlignment>512</FileAlignment>
|
||||||
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||||
<WindowsXamlEnableOverview>true</WindowsXamlEnableOverview>
|
<WindowsXamlEnableOverview>true</WindowsXamlEnableOverview>
|
||||||
|
@ -134,8 +134,8 @@
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
</Page>
|
</Page>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' < '16.0' ">
|
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' < '17.0' ">
|
||||||
<VisualStudioVersion>16.0</VisualStudioVersion>
|
<VisualStudioVersion>17.0</VisualStudioVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
|
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
|
||||||
<ImportGroup Label="ReactNativeWindowsPropertySheets">
|
<ImportGroup Label="ReactNativeWindowsPropertySheets">
|
||||||
|
|
|
@ -26,6 +26,11 @@
|
||||||
"resolved": "1.0.9",
|
"resolved": "1.0.9",
|
||||||
"contentHash": "rvh/RZghhSG28PDL1dw56nTZRN0/ViV2TIja/ykU9FHn0gtM8pwtgD8Ebo1nobu0QnSjn8Cg6Ncu39VV19rkrw=="
|
"contentHash": "rvh/RZghhSG28PDL1dw56nTZRN0/ViV2TIja/ykU9FHn0gtM8pwtgD8Ebo1nobu0QnSjn8Cg6Ncu39VV19rkrw=="
|
||||||
},
|
},
|
||||||
|
"boost": {
|
||||||
|
"type": "Transitive",
|
||||||
|
"resolved": "1.76.0",
|
||||||
|
"contentHash": "p+w3YvNdXL8Cu9Fzrmexssu0tZbWxuf6ywsQqHjDlKFE5ojXHof1HIyMC3zDLfLnh80dIeFcEUAuR2Asg/XHRA=="
|
||||||
|
},
|
||||||
"Microsoft.Net.Native.Compiler": {
|
"Microsoft.Net.Native.Compiler": {
|
||||||
"type": "Transitive",
|
"type": "Transitive",
|
||||||
"resolved": "2.2.7-rel-27913-00",
|
"resolved": "2.2.7-rel-27913-00",
|
||||||
|
@ -50,7 +55,12 @@
|
||||||
"Microsoft.NETCore.Platforms": {
|
"Microsoft.NETCore.Platforms": {
|
||||||
"type": "Transitive",
|
"type": "Transitive",
|
||||||
"resolved": "2.1.0",
|
"resolved": "2.1.0",
|
||||||
"contentHash": "GmkKfoyerqmsHMn7OZj0AKpcBabD+GaafqphvX2Mw406IwiJRy1pKcKqdCfKJfYmkRyJ6+e+RaUylgdJoDa1jQ=="
|
"contentHash": "ok+RPAtESz/9MUXeIEz6Lv5XAGQsaNmEYXMsgVALj4D7kqC8gveKWXWXbufLySR2fWrwZf8smyN5RmHu0e4BHA=="
|
||||||
|
},
|
||||||
|
"Microsoft.Windows.SDK.BuildTools": {
|
||||||
|
"type": "Transitive",
|
||||||
|
"resolved": "10.0.22000.194",
|
||||||
|
"contentHash": "4L0P3zqut466SIqT3VBeLTNUQTxCBDOrTRymRuROCRJKazcK7ibLz9yAO1nKWRt50ttCj39oAa2Iuz9ZTDmLlg=="
|
||||||
},
|
},
|
||||||
"NETStandard.Library": {
|
"NETStandard.Library": {
|
||||||
"type": "Transitive",
|
"type": "Transitive",
|
||||||
|
@ -60,6 +70,11 @@
|
||||||
"Microsoft.NETCore.Platforms": "1.1.0"
|
"Microsoft.NETCore.Platforms": "1.1.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"ReactNative.Hermes.Windows": {
|
||||||
|
"type": "Transitive",
|
||||||
|
"resolved": "0.70.0",
|
||||||
|
"contentHash": "nh9F1wAhkndqfHG/hrS+ezesunlGhCr32pASEEAkQenn8Ou4dUwjmt0c7aT3pONl9itZ1bF9GWbpXJ7t6AsS+Q=="
|
||||||
|
},
|
||||||
"runtime.win10-arm.Microsoft.Net.Native.Compiler": {
|
"runtime.win10-arm.Microsoft.Net.Native.Compiler": {
|
||||||
"type": "Transitive",
|
"type": "Transitive",
|
||||||
"resolved": "2.2.7-rel-27913-00",
|
"resolved": "2.2.7-rel-27913-00",
|
||||||
|
@ -128,23 +143,64 @@
|
||||||
"contentHash": "qF6RRZKaflI+LR1YODNyWYjq5YoX8IJ2wx5y8O+AW2xO+1t/Q6Mm+jQ38zJbWnmXbrcOqUYofn7Y3/KC6lTLBQ=="
|
"contentHash": "qF6RRZKaflI+LR1YODNyWYjq5YoX8IJ2wx5y8O+AW2xO+1t/Q6Mm+jQ38zJbWnmXbrcOqUYofn7Y3/KC6lTLBQ=="
|
||||||
},
|
},
|
||||||
"automationchannel": {
|
"automationchannel": {
|
||||||
|
"type": "Project",
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.ReactNative": "[1.0.0, )",
|
||||||
|
"Microsoft.UI.Xaml": "[2.7.0, )"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"common": {
|
||||||
"type": "Project"
|
"type": "Project"
|
||||||
},
|
},
|
||||||
"microsoft.reactnative": {
|
"fmt": {
|
||||||
"type": "Project"
|
"type": "Project"
|
||||||
},
|
},
|
||||||
|
"folly": {
|
||||||
|
"type": "Project",
|
||||||
|
"dependencies": {
|
||||||
|
"boost": "[1.76.0, )",
|
||||||
|
"fmt": "[1.0.0, )"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"microsoft.reactnative": {
|
||||||
|
"type": "Project",
|
||||||
|
"dependencies": {
|
||||||
|
"Common": "[1.0.0, )",
|
||||||
|
"Folly": "[1.0.0, )",
|
||||||
|
"Microsoft.UI.Xaml": "[2.7.0, )",
|
||||||
|
"Microsoft.Windows.SDK.BuildTools": "[10.0.22000.194, )",
|
||||||
|
"ReactCommon": "[1.0.0, )",
|
||||||
|
"ReactNative.Hermes.Windows": "[0.70.0, )",
|
||||||
|
"boost": "[1.76.0, )"
|
||||||
|
}
|
||||||
|
},
|
||||||
"microsoft.reactnative.managed": {
|
"microsoft.reactnative.managed": {
|
||||||
"type": "Project",
|
"type": "Project",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"Microsoft.NETCore.UniversalWindowsPlatform": "6.2.9",
|
"Microsoft.NETCore.UniversalWindowsPlatform": "[6.2.9, )",
|
||||||
"Microsoft.ReactNative": "1.0.0"
|
"Microsoft.ReactNative": "[1.0.0, )"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"reactcommon": {
|
||||||
|
"type": "Project",
|
||||||
|
"dependencies": {
|
||||||
|
"Folly": "[1.0.0, )",
|
||||||
|
"boost": "[1.76.0, )"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"reactnativepicker": {
|
"reactnativepicker": {
|
||||||
"type": "Project"
|
"type": "Project",
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.ReactNative": "[1.0.0, )",
|
||||||
|
"Microsoft.UI.Xaml": "[2.7.0, )"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"reactnativexaml": {
|
"reactnativexaml": {
|
||||||
"type": "Project"
|
"type": "Project",
|
||||||
|
"dependencies": {
|
||||||
|
"Microsoft.ReactNative": "[1.0.0, )",
|
||||||
|
"Microsoft.UI.Xaml": "[2.7.0, )"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"UAP,Version=v10.0.16299/win10-arm": {
|
"UAP,Version=v10.0.16299/win10-arm": {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
# Visual Studio Version 16
|
# Visual Studio Version 17
|
||||||
VisualStudioVersion = 16.0.29102.190
|
VisualStudioVersion = 17.3.32929.385
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Folly", "..\..\..\vnext\Folly\Folly.vcxproj", "{A990658C-CE31-4BCC-976F-0FC6B1AF693D}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Folly", "..\..\..\vnext\Folly\Folly.vcxproj", "{A990658C-CE31-4BCC-976F-0FC6B1AF693D}"
|
||||||
EndProject
|
EndProject
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
|
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
|
||||||
<TargetPlatformVersion Condition=" '$(TargetPlatformVersion)' == '' ">10.0.19041.0</TargetPlatformVersion>
|
<TargetPlatformVersion Condition=" '$(TargetPlatformVersion)' == '' ">10.0.19041.0</TargetPlatformVersion>
|
||||||
<TargetPlatformMinVersion>10.0.16299.0</TargetPlatformMinVersion>
|
<TargetPlatformMinVersion>10.0.16299.0</TargetPlatformMinVersion>
|
||||||
<MinimumVisualStudioVersion>16.0</MinimumVisualStudioVersion>
|
<MinimumVisualStudioVersion>17.0</MinimumVisualStudioVersion>
|
||||||
<FileAlignment>512</FileAlignment>
|
<FileAlignment>512</FileAlignment>
|
||||||
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||||
<AllowCrossPlatformRetargeting>false</AllowCrossPlatformRetargeting>
|
<AllowCrossPlatformRetargeting>false</AllowCrossPlatformRetargeting>
|
||||||
|
@ -100,8 +100,8 @@
|
||||||
</PackageReference>
|
</PackageReference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup />
|
<ItemGroup />
|
||||||
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' < '16.0' ">
|
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' < '17.0' ">
|
||||||
<VisualStudioVersion>16.0</VisualStudioVersion>
|
<VisualStudioVersion>17.0</VisualStudioVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
|
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
|
||||||
<ImportGroup Label="ReactNativeWindowsPropertySheets">
|
<ImportGroup Label="ReactNativeWindowsPropertySheets">
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
# Visual Studio Version 16
|
# Visual Studio Version 17
|
||||||
VisualStudioVersion = 16.0.29215.179
|
VisualStudioVersion = 17.3.32929.385
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "integrationtest", "integrationtest\integrationtest.vcxproj", "{A24C443D-B107-4594-9F15-2CD83732B6CE}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "integrationtest", "integrationtest\integrationtest.vcxproj", "{A24C443D-B107-4594-9F15-2CD83732B6CE}"
|
||||||
ProjectSection(ProjectDependencies) = postProject
|
ProjectSection(ProjectDependencies) = postProject
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
<ProjectName>integrationtest</ProjectName>
|
<ProjectName>integrationtest</ProjectName>
|
||||||
<RootNamespace>integrationtest</RootNamespace>
|
<RootNamespace>integrationtest</RootNamespace>
|
||||||
<DefaultLanguage>en-US</DefaultLanguage>
|
<DefaultLanguage>en-US</DefaultLanguage>
|
||||||
<MinimumVisualStudioVersion>16.0</MinimumVisualStudioVersion>
|
<MinimumVisualStudioVersion>17.0</MinimumVisualStudioVersion>
|
||||||
<AppContainerApplication>true</AppContainerApplication>
|
<AppContainerApplication>true</AppContainerApplication>
|
||||||
<ApplicationType>Windows Store</ApplicationType>
|
<ApplicationType>Windows Store</ApplicationType>
|
||||||
<ApplicationTypeRevision>10.0</ApplicationTypeRevision>
|
<ApplicationTypeRevision>10.0</ApplicationTypeRevision>
|
||||||
|
@ -174,7 +174,7 @@
|
||||||
</Page>
|
</Page>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" />
|
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" PrivateAssets="all" />
|
||||||
<PackageReference Include="ReactNative.Hermes.Windows" Version="$(HermesVersion)" />
|
<PackageReference Include="ReactNative.Hermes.Windows" Version="$(HermesVersion)" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
|
|
|
@ -159,7 +159,7 @@
|
||||||
<CopyLocalSatelliteAssemblies>true</CopyLocalSatelliteAssemblies>
|
<CopyLocalSatelliteAssemblies>true</CopyLocalSatelliteAssemblies>
|
||||||
<UseLibraryDependencyInputs>true</UseLibraryDependencyInputs>
|
<UseLibraryDependencyInputs>true</UseLibraryDependencyInputs>
|
||||||
</ProjectReference> -->
|
</ProjectReference> -->
|
||||||
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" />
|
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" PrivateAssets="all" />
|
||||||
<PackageReference Include="ReactNative.Hermes.Windows" Version="$(HermesVersion)" />
|
<PackageReference Include="ReactNative.Hermes.Windows" Version="$(HermesVersion)" />
|
||||||
<PackageReference Include="$(WinUIPackageName)" Version="$(WinUIPackageVersion)" />
|
<PackageReference Include="$(WinUIPackageName)" Version="$(WinUIPackageVersion)" />
|
||||||
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22000.194" />
|
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22000.194" />
|
||||||
|
|
|
@ -41,6 +41,6 @@ foreach ($filePath in $filesToUpdate) {
|
||||||
|
|
||||||
$env:UseWinUI3='true'
|
$env:UseWinUI3='true'
|
||||||
$env:UseExperimentalIXP='true'
|
$env:UseExperimentalIXP='true'
|
||||||
& "C:\Program Files (x86)\Microsoft Visual Studio\2019\Preview\Common7\IDE\devenv.exe" $PSScriptRoot\windows\playground-win32-packaged.sln
|
& "C:\Program Files\Microsoft Visual Studio\2022\Common7\IDE\devenv.exe" $PSScriptRoot\windows\playground-win32-packaged.sln
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
# Visual Studio Version 16
|
# Visual Studio Version 17
|
||||||
VisualStudioVersion = 16.0.29102.190
|
VisualStudioVersion = 17.3.32929.385
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Playground-composition", "playground-composition\Playground-Composition.vcxproj", "{F54A991F-5535-43DF-AE79-85821E001675}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Playground-composition", "playground-composition\Playground-Composition.vcxproj", "{F54A991F-5535-43DF-AE79-85821E001675}"
|
||||||
EndProject
|
EndProject
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
<WindowsTargetPlatformMinVersion>10.0.18362.0</WindowsTargetPlatformMinVersion>
|
<WindowsTargetPlatformMinVersion>10.0.18362.0</WindowsTargetPlatformMinVersion>
|
||||||
<WindowsTargetPlatformVersion>10.0.19041.0</WindowsTargetPlatformVersion>
|
<WindowsTargetPlatformVersion>10.0.19041.0</WindowsTargetPlatformVersion>
|
||||||
<DefaultLanguage>en-US</DefaultLanguage>
|
<DefaultLanguage>en-US</DefaultLanguage>
|
||||||
<MinimumVisualStudioVersion>16.0</MinimumVisualStudioVersion>
|
<MinimumVisualStudioVersion>17.0</MinimumVisualStudioVersion>
|
||||||
<AppxPackage>false</AppxPackage>
|
<AppxPackage>false</AppxPackage>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Label="FromWinUI3_VSIX" Condition="'$(UseWinUI3)'=='true'">
|
<PropertyGroup Label="FromWinUI3_VSIX" Condition="'$(UseWinUI3)'=='true'">
|
||||||
|
@ -46,7 +46,7 @@
|
||||||
<PropertyGroup Label="Configuration">
|
<PropertyGroup Label="Configuration">
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
<PlatformToolset>v142</PlatformToolset>
|
<PlatformToolset>v143</PlatformToolset>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
|
||||||
<UseDebugLibraries>true</UseDebugLibraries>
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
|
@ -179,7 +179,7 @@
|
||||||
to be able to carry WinUI in-app instead of using the Framework Package
|
to be able to carry WinUI in-app instead of using the Framework Package
|
||||||
-->
|
-->
|
||||||
<!-- <PackageReference Include="Microsoft.UI.Xaml" Version="2.6.1-prerelease.210709001" /> -->
|
<!-- <PackageReference Include="Microsoft.UI.Xaml" Version="2.6.1-prerelease.210709001" /> -->
|
||||||
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" />
|
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" PrivateAssets="all" />
|
||||||
<PackageReference Include="Microsoft.VCRTForwarders.140" Version="1.0.2-rc" />
|
<PackageReference Include="Microsoft.VCRTForwarders.140" Version="1.0.2-rc" />
|
||||||
<PackageReference Include="$(V8PackageName)" Version="$(V8Version)" Condition="'$(UseV8)' == 'true'" />
|
<PackageReference Include="$(V8PackageName)" Version="$(V8Version)" Condition="'$(UseV8)' == 'true'" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
# Visual Studio Version 16
|
# Visual Studio Version 17
|
||||||
VisualStudioVersion = 16.0.29102.190
|
VisualStudioVersion = 17.3.32929.385
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Playground-win32", "playground-win32\Playground-Win32.vcxproj", "{8B88FFAE-4DBC-49A2-AFA5-D2477D4AD189}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Playground-win32", "playground-win32\Playground-Win32.vcxproj", "{8B88FFAE-4DBC-49A2-AFA5-D2477D4AD189}"
|
||||||
EndProject
|
EndProject
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
# Visual Studio Version 16
|
# Visual Studio Version 17
|
||||||
VisualStudioVersion = 16.0.29102.190
|
VisualStudioVersion = 17.3.32929.385
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Playground-win32", "playground-win32\Playground-Win32.vcxproj", "{8B88FFAE-4DBC-49A2-AFA5-D2477D4AD189}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Playground-win32", "playground-win32\Playground-Win32.vcxproj", "{8B88FFAE-4DBC-49A2-AFA5-D2477D4AD189}"
|
||||||
EndProject
|
EndProject
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
<WindowsTargetPlatformVersion>10.0.19041.0</WindowsTargetPlatformVersion>
|
<WindowsTargetPlatformVersion>10.0.19041.0</WindowsTargetPlatformVersion>
|
||||||
<BuildMSRNCxx>false</BuildMSRNCxx>
|
<BuildMSRNCxx>false</BuildMSRNCxx>
|
||||||
<DefaultLanguage>en-US</DefaultLanguage>
|
<DefaultLanguage>en-US</DefaultLanguage>
|
||||||
<MinimumVisualStudioVersion>16.0</MinimumVisualStudioVersion>
|
<MinimumVisualStudioVersion>17.0</MinimumVisualStudioVersion>
|
||||||
<AppxPackage>false</AppxPackage>
|
<AppxPackage>false</AppxPackage>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Label="FromWinUI3_VSIX" Condition="'$(UseWinUI3)'=='true'">
|
<PropertyGroup Label="FromWinUI3_VSIX" Condition="'$(UseWinUI3)'=='true'">
|
||||||
|
@ -47,7 +47,7 @@
|
||||||
<PropertyGroup Label="Configuration">
|
<PropertyGroup Label="Configuration">
|
||||||
<ConfigurationType>Application</ConfigurationType>
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
<CharacterSet>Unicode</CharacterSet>
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
<PlatformToolset>v142</PlatformToolset>
|
<PlatformToolset>v143</PlatformToolset>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'" Label="Configuration">
|
||||||
<UseDebugLibraries>true</UseDebugLibraries>
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
|
@ -174,7 +174,7 @@
|
||||||
to be able to carry WinUI in-app instead of using the Framework Package
|
to be able to carry WinUI in-app instead of using the Framework Package
|
||||||
-->
|
-->
|
||||||
<!-- <PackageReference Include="Microsoft.UI.Xaml" Version="2.6.1-prerelease.210709001" /> -->
|
<!-- <PackageReference Include="Microsoft.UI.Xaml" Version="2.6.1-prerelease.210709001" /> -->
|
||||||
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" />
|
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" PrivateAssets="all" />
|
||||||
<PackageReference Include="Microsoft.VCRTForwarders.140" Version="1.0.2-rc" />
|
<PackageReference Include="Microsoft.VCRTForwarders.140" Version="1.0.2-rc" />
|
||||||
<PackageReference Include="$(V8PackageName)" Version="$(V8Version)" Condition="'$(UseV8)' == 'true'" />
|
<PackageReference Include="$(V8PackageName)" Version="$(V8Version)" Condition="'$(UseV8)' == 'true'" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
# Visual Studio Version 16
|
# Visual Studio Version 17
|
||||||
VisualStudioVersion = 16.0.29215.179
|
VisualStudioVersion = 17.3.32929.385
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "playground", "playground\playground.vcxproj", "{6B6AA847-B32F-41AC-9D3B-48A8CDFA8ADE}"
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "playground", "playground\playground.vcxproj", "{6B6AA847-B32F-41AC-9D3B-48A8CDFA8ADE}"
|
||||||
ProjectSection(ProjectDependencies) = postProject
|
ProjectSection(ProjectDependencies) = postProject
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
<ProjectName>playground</ProjectName>
|
<ProjectName>playground</ProjectName>
|
||||||
<RootNamespace>playground</RootNamespace>
|
<RootNamespace>playground</RootNamespace>
|
||||||
<DefaultLanguage>en-US</DefaultLanguage>
|
<DefaultLanguage>en-US</DefaultLanguage>
|
||||||
<MinimumVisualStudioVersion>16.0</MinimumVisualStudioVersion>
|
<MinimumVisualStudioVersion>17.0</MinimumVisualStudioVersion>
|
||||||
<AppContainerApplication>true</AppContainerApplication>
|
<AppContainerApplication>true</AppContainerApplication>
|
||||||
<ApplicationType>Windows Store</ApplicationType>
|
<ApplicationType>Windows Store</ApplicationType>
|
||||||
<ApplicationTypeRevision>10.0</ApplicationTypeRevision>
|
<ApplicationTypeRevision>10.0</ApplicationTypeRevision>
|
||||||
|
@ -164,7 +164,7 @@
|
||||||
<Import Project="$(ReactNativeWindowsDir)\PropertySheets\External\Microsoft.ReactNative.Uwp.CppApp.targets" Condition="Exists('$(ReactNativeWindowsDir)\PropertySheets\External\Microsoft.ReactNative.Uwp.CppApp.targets')" />
|
<Import Project="$(ReactNativeWindowsDir)\PropertySheets\External\Microsoft.ReactNative.Uwp.CppApp.targets" Condition="Exists('$(ReactNativeWindowsDir)\PropertySheets\External\Microsoft.ReactNative.Uwp.CppApp.targets')" />
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" />
|
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" PrivateAssets="all" />
|
||||||
<PackageReference Include="ReactNative.Hermes.Windows" Version="$(HermesVersion)" />
|
<PackageReference Include="ReactNative.Hermes.Windows" Version="$(HermesVersion)" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Target Name="EnsureReactNativeWindowsTargets" BeforeTargets="PrepareForBuild">
|
<Target Name="EnsureReactNativeWindowsTargets" BeforeTargets="PrepareForBuild">
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
<ProjectName>SampleAppCpp</ProjectName>
|
<ProjectName>SampleAppCpp</ProjectName>
|
||||||
<RootNamespace>SampleAppCpp</RootNamespace>
|
<RootNamespace>SampleAppCpp</RootNamespace>
|
||||||
<DefaultLanguage>en-US</DefaultLanguage>
|
<DefaultLanguage>en-US</DefaultLanguage>
|
||||||
<MinimumVisualStudioVersion>16.0</MinimumVisualStudioVersion>
|
<MinimumVisualStudioVersion>17.0</MinimumVisualStudioVersion>
|
||||||
<AppContainerApplication>true</AppContainerApplication>
|
<AppContainerApplication>true</AppContainerApplication>
|
||||||
<ApplicationType>Windows Store</ApplicationType>
|
<ApplicationType>Windows Store</ApplicationType>
|
||||||
<ApplicationTypeRevision>10.0</ApplicationTypeRevision>
|
<ApplicationTypeRevision>10.0</ApplicationTypeRevision>
|
||||||
|
@ -173,7 +173,7 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="boost" Version="1.76.0.0" />
|
<PackageReference Include="boost" Version="1.76.0.0" />
|
||||||
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" />
|
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" PrivateAssets="all" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
<ImportGroup Label="ReactNativeWindowsTargets">
|
<ImportGroup Label="ReactNativeWindowsTargets">
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
|
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
|
||||||
<TargetPlatformVersion Condition=" '$(TargetPlatformVersion)' == '' ">10.0.19041.0</TargetPlatformVersion>
|
<TargetPlatformVersion Condition=" '$(TargetPlatformVersion)' == '' ">10.0.19041.0</TargetPlatformVersion>
|
||||||
<TargetPlatformMinVersion>10.0.16299.0</TargetPlatformMinVersion>
|
<TargetPlatformMinVersion>10.0.16299.0</TargetPlatformMinVersion>
|
||||||
<MinimumVisualStudioVersion>16.0</MinimumVisualStudioVersion>
|
<MinimumVisualStudioVersion>17.0</MinimumVisualStudioVersion>
|
||||||
<FileAlignment>512</FileAlignment>
|
<FileAlignment>512</FileAlignment>
|
||||||
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||||
<WindowsXamlEnableOverview>true</WindowsXamlEnableOverview>
|
<WindowsXamlEnableOverview>true</WindowsXamlEnableOverview>
|
||||||
|
@ -146,8 +146,8 @@
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
</Page>
|
</Page>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' < '16.0' ">
|
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' < '17.0' ">
|
||||||
<VisualStudioVersion>16.0</VisualStudioVersion>
|
<VisualStudioVersion>17.0</VisualStudioVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
|
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
|
||||||
<ImportGroup Label="ReactNativeWindowsPropertySheets">
|
<ImportGroup Label="ReactNativeWindowsPropertySheets">
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
# Visual Studio Version 16
|
# Visual Studio Version 17
|
||||||
VisualStudioVersion = 16.0.29215.179
|
VisualStudioVersion = 17.3.32929.385
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SampleAppCS", "SampleAppCS\SampleAppCS.csproj", "{09F4E6C1-2D12-4059-AA96-0B190861FD6A}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SampleAppCS", "SampleAppCS\SampleAppCS.csproj", "{09F4E6C1-2D12-4059-AA96-0B190861FD6A}"
|
||||||
EndProject
|
EndProject
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
<ProjectName>SampleLibraryCpp</ProjectName>
|
<ProjectName>SampleLibraryCpp</ProjectName>
|
||||||
<RootNamespace>SampleLibraryCpp</RootNamespace>
|
<RootNamespace>SampleLibraryCpp</RootNamespace>
|
||||||
<DefaultLanguage>en-US</DefaultLanguage>
|
<DefaultLanguage>en-US</DefaultLanguage>
|
||||||
<MinimumVisualStudioVersion>16.0</MinimumVisualStudioVersion>
|
<MinimumVisualStudioVersion>17.0</MinimumVisualStudioVersion>
|
||||||
<AppContainerApplication>true</AppContainerApplication>
|
<AppContainerApplication>true</AppContainerApplication>
|
||||||
<ApplicationType>Windows Store</ApplicationType>
|
<ApplicationType>Windows Store</ApplicationType>
|
||||||
<ApplicationTypeRevision>10.0</ApplicationTypeRevision>
|
<ApplicationTypeRevision>10.0</ApplicationTypeRevision>
|
||||||
|
@ -150,7 +150,7 @@
|
||||||
</Page>
|
</Page>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" />
|
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" PrivateAssets="all" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
<ImportGroup Label="ReactNativeWindowsTargets">
|
<ImportGroup Label="ReactNativeWindowsTargets">
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
|
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
|
||||||
<TargetPlatformVersion Condition=" '$(TargetPlatformVersion)' == '' ">10.0.19041.0</TargetPlatformVersion>
|
<TargetPlatformVersion Condition=" '$(TargetPlatformVersion)' == '' ">10.0.19041.0</TargetPlatformVersion>
|
||||||
<TargetPlatformMinVersion>10.0.16299.0</TargetPlatformMinVersion>
|
<TargetPlatformMinVersion>10.0.16299.0</TargetPlatformMinVersion>
|
||||||
<MinimumVisualStudioVersion>16.0</MinimumVisualStudioVersion>
|
<MinimumVisualStudioVersion>17.0</MinimumVisualStudioVersion>
|
||||||
<FileAlignment>512</FileAlignment>
|
<FileAlignment>512</FileAlignment>
|
||||||
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||||
<AllowCrossPlatformRetargeting>false</AllowCrossPlatformRetargeting>
|
<AllowCrossPlatformRetargeting>false</AllowCrossPlatformRetargeting>
|
||||||
|
@ -108,8 +108,8 @@
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
</Page>
|
</Page>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' < '16.0' ">
|
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' < '17.0' ">
|
||||||
<VisualStudioVersion>16.0</VisualStudioVersion>
|
<VisualStudioVersion>17.0</VisualStudioVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
|
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
|
||||||
<ImportGroup Label="ReactNativeWindowsPropertySheets">
|
<ImportGroup Label="ReactNativeWindowsPropertySheets">
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
<CppWinRTEnableReferenceProjection>true</CppWinRTEnableReferenceProjection>
|
<CppWinRTEnableReferenceProjection>true</CppWinRTEnableReferenceProjection>
|
||||||
<ProjectGuid>{44DCED9B-9C4C-48FE-8545-0930192BBC16}</ProjectGuid>
|
<ProjectGuid>{44DCED9B-9C4C-48FE-8545-0930192BBC16}</ProjectGuid>
|
||||||
<ProjectName>React.Windows.Desktop.ABITests</ProjectName>
|
<ProjectName>React.Windows.Desktop.ABITests</ProjectName>
|
||||||
<VCProjectVersion>16.0</VCProjectVersion>
|
<VCProjectVersion>17.0</VCProjectVersion>
|
||||||
<Keyword>Win32Proj</Keyword>
|
<Keyword>Win32Proj</Keyword>
|
||||||
<RootNamespace>ReactWindowsDesktopABITests</RootNamespace>
|
<RootNamespace>ReactWindowsDesktopABITests</RootNamespace>
|
||||||
<ProjectSubType>NativeUnitTestProject</ProjectSubType>
|
<ProjectSubType>NativeUnitTestProject</ProjectSubType>
|
||||||
|
@ -164,7 +164,7 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.googletest.v140.windesktop.msvcstl.static.rt-dyn" Version="1.8.1" />
|
<PackageReference Include="Microsoft.googletest.v140.windesktop.msvcstl.static.rt-dyn" Version="1.8.1" />
|
||||||
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" />
|
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" PrivateAssets="all" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
</Project>
|
</Project>
|
|
@ -122,7 +122,7 @@
|
||||||
<PackageReference Include="boost" Version="1.76.0.0" />
|
<PackageReference Include="boost" Version="1.76.0.0" />
|
||||||
<PackageReference Include="ReactWindows.OpenSSL.StdCall.Static" Version="1.0.2-p.5" />
|
<PackageReference Include="ReactWindows.OpenSSL.StdCall.Static" Version="1.0.2-p.5" />
|
||||||
<!-- TODO: Remove!!! -->
|
<!-- TODO: Remove!!! -->
|
||||||
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" />
|
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" PrivateAssets="all" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
<Target Name="Test">
|
<Target Name="Test">
|
||||||
|
|
|
@ -122,7 +122,7 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="boost" Version="1.76.0.0" />
|
<PackageReference Include="boost" Version="1.76.0.0" />
|
||||||
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" />
|
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" PrivateAssets="all" />
|
||||||
<PackageReference Include="ReactWindows.OpenSSL.StdCall.Static" Version="1.0.2-p.5" />
|
<PackageReference Include="ReactWindows.OpenSSL.StdCall.Static" Version="1.0.2-p.5" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
<ProjectName>React.Windows.Desktop</ProjectName>
|
<ProjectName>React.Windows.Desktop</ProjectName>
|
||||||
<RootNamespace>facebook.react</RootNamespace>
|
<RootNamespace>facebook.react</RootNamespace>
|
||||||
<DefaultLanguage>en-US</DefaultLanguage>
|
<DefaultLanguage>en-US</DefaultLanguage>
|
||||||
<MinimumVisualStudioVersion>16.0</MinimumVisualStudioVersion>
|
<MinimumVisualStudioVersion>17.0</MinimumVisualStudioVersion>
|
||||||
<CppWinRTProjectLanguage>C++/WinRT</CppWinRTProjectLanguage>
|
<CppWinRTProjectLanguage>C++/WinRT</CppWinRTProjectLanguage>
|
||||||
<CppWinRTNamespaceMergeDepth>2</CppWinRTNamespaceMergeDepth>
|
<CppWinRTNamespaceMergeDepth>2</CppWinRTNamespaceMergeDepth>
|
||||||
<CppWinRTUsePrefixes>true</CppWinRTUsePrefixes>
|
<CppWinRTUsePrefixes>true</CppWinRTUsePrefixes>
|
||||||
|
@ -333,7 +333,7 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="boost" Version="1.76.0.0" />
|
<PackageReference Include="boost" Version="1.76.0.0" />
|
||||||
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" />
|
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" PrivateAssets="all" />
|
||||||
<PackageReference Include="ReactNative.Hermes.Windows" Version="$(HermesVersion)" />
|
<PackageReference Include="ReactNative.Hermes.Windows" Version="$(HermesVersion)" />
|
||||||
<PackageReference Include="ReactWindows.OpenSSL.StdCall.Static" Version="1.0.2-p.5" />
|
<PackageReference Include="ReactWindows.OpenSSL.StdCall.Static" Version="1.0.2-p.5" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<CppWinRTOptimized>true</CppWinRTOptimized>
|
<CppWinRTOptimized>true</CppWinRTOptimized>
|
||||||
<CppWinRTRootNamespaceAutoMerge>true</CppWinRTRootNamespaceAutoMerge>
|
<CppWinRTRootNamespaceAutoMerge>true</CppWinRTRootNamespaceAutoMerge>
|
||||||
<MinimalCoreWin>true</MinimalCoreWin>
|
<MinimalCoreWin>true</MinimalCoreWin>
|
||||||
<VCProjectVersion>16.0</VCProjectVersion>
|
<VCProjectVersion>17.0</VCProjectVersion>
|
||||||
<ProjectGuid>{93792779-4948-4A5D-8CA7-86ED5E3BEC27}</ProjectGuid>
|
<ProjectGuid>{93792779-4948-4A5D-8CA7-86ED5E3BEC27}</ProjectGuid>
|
||||||
<Keyword>Win32Proj</Keyword>
|
<Keyword>Win32Proj</Keyword>
|
||||||
<RootNamespace>ReactComponentTests</RootNamespace>
|
<RootNamespace>ReactComponentTests</RootNamespace>
|
||||||
|
@ -227,7 +227,7 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.googletest.v140.windesktop.msvcstl.static.rt-dyn" Version="1.8.1" />
|
<PackageReference Include="Microsoft.googletest.v140.windesktop.msvcstl.static.rt-dyn" Version="1.8.1" />
|
||||||
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" />
|
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" PrivateAssets="all" />
|
||||||
<PackageReference Include="boost" Version="1.76.0.0" />
|
<PackageReference Include="boost" Version="1.76.0.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
<CppWinRTOptimized>true</CppWinRTOptimized>
|
<CppWinRTOptimized>true</CppWinRTOptimized>
|
||||||
<CppWinRTRootNamespaceAutoMerge>true</CppWinRTRootNamespaceAutoMerge>
|
<CppWinRTRootNamespaceAutoMerge>true</CppWinRTRootNamespaceAutoMerge>
|
||||||
<MinimalCoreWin>true</MinimalCoreWin>
|
<MinimalCoreWin>true</MinimalCoreWin>
|
||||||
<VCProjectVersion>16.0</VCProjectVersion>
|
<VCProjectVersion>17.0</VCProjectVersion>
|
||||||
<ProjectGuid>{6c60e295-c8ca-4dc5-b8be-09888f58b249}</ProjectGuid>
|
<ProjectGuid>{6c60e295-c8ca-4dc5-b8be-09888f58b249}</ProjectGuid>
|
||||||
<Keyword>Win32Proj</Keyword>
|
<Keyword>Win32Proj</Keyword>
|
||||||
<RootNamespace>Microsoft.ReactNative</RootNamespace>
|
<RootNamespace>Microsoft.ReactNative</RootNamespace>
|
||||||
|
@ -162,7 +162,7 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.googletest.v140.windesktop.msvcstl.static.rt-dyn" Version="1.8.1.4" />
|
<PackageReference Include="Microsoft.googletest.v140.windesktop.msvcstl.static.rt-dyn" Version="1.8.1.4" />
|
||||||
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" />
|
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" PrivateAssets="all" />
|
||||||
<PackageReference Include="$(V8PackageName)" Version="$(V8PackageVersion)" Condition="'$(UseV8)' == 'true'" />
|
<PackageReference Include="$(V8PackageName)" Version="$(V8PackageVersion)" Condition="'$(UseV8)' == 'true'" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<Project DefaultTargets="Build" ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<PropertyGroup Label="Globals">
|
<PropertyGroup Label="Globals">
|
||||||
<MinimalCoreWin>true</MinimalCoreWin>
|
<MinimalCoreWin>true</MinimalCoreWin>
|
||||||
<VCProjectVersion>16.0</VCProjectVersion>
|
<VCProjectVersion>17.0</VCProjectVersion>
|
||||||
<ProjectGuid>{14FA0516-E6D7-4E4D-B097-1470198C5072}</ProjectGuid>
|
<ProjectGuid>{14FA0516-E6D7-4E4D-B097-1470198C5072}</ProjectGuid>
|
||||||
<Keyword>Win32Proj</Keyword>
|
<Keyword>Win32Proj</Keyword>
|
||||||
<RootNamespace>Microsoft.ReactNative.IntegrationTests</RootNamespace>
|
<RootNamespace>Microsoft.ReactNative.IntegrationTests</RootNamespace>
|
||||||
|
@ -162,7 +162,7 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="Microsoft.googletest.v140.windesktop.msvcstl.static.rt-dyn" Version="1.8.1" />
|
<PackageReference Include="Microsoft.googletest.v140.windesktop.msvcstl.static.rt-dyn" Version="1.8.1" />
|
||||||
<PackageReference Include="Microsoft.VCRTForwarders.140" Version="1.0.6" />
|
<PackageReference Include="Microsoft.VCRTForwarders.140" Version="1.0.6" />
|
||||||
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" />
|
<PackageReference Include="Microsoft.Windows.CppWinRT" Version="$(CppWinRTVersion)" PrivateAssets="all" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
<Import Project="TestBundle.targets" />
|
<Import Project="TestBundle.targets" />
|
||||||
|
|
|
@ -71,7 +71,7 @@ public class TestClass
|
||||||
var microsoftNetCoreUwpPkgFolder = Path.Combine(uwpPath, microsoftNetCoreUwpPkgVersion.ToString(), "ref", uapVersion);
|
var microsoftNetCoreUwpPkgFolder = Path.Combine(uwpPath, microsoftNetCoreUwpPkgVersion.ToString(), "ref", uapVersion);
|
||||||
if (!Directory.Exists(microsoftNetCoreUwpPkgFolder))
|
if (!Directory.Exists(microsoftNetCoreUwpPkgFolder))
|
||||||
{
|
{
|
||||||
Assert.Fail($"Could not find path {microsoftNetCoreUwpPkgFolder}. This should have been installed as part of the UWP workload for Microsoft Visual Studio 2019 version 16.6");
|
Assert.Fail($"Could not find path {microsoftNetCoreUwpPkgFolder}. This should have been installed as part of the UWP workload for Microsoft Visual Studio 2022 version 17.0");
|
||||||
}
|
}
|
||||||
references.AddRange(Directory.EnumerateFiles(microsoftNetCoreUwpPkgFolder, "*.dll"));
|
references.AddRange(Directory.EnumerateFiles(microsoftNetCoreUwpPkgFolder, "*.dll"));
|
||||||
|
|
||||||
|
|
|
@ -15,9 +15,7 @@ internal void CreateObjectSerializers()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
;
|
|
||||||
global::Microsoft.ReactNative.Managed.JSValueWriterOf<global::TestClass.MyClass>.WriteValue = (writer, value) =>
|
global::Microsoft.ReactNative.Managed.JSValueWriterOf<global::TestClass.MyClass>.WriteValue = (writer, value) =>
|
||||||
{
|
{
|
||||||
if (value != null)
|
if (value != null)
|
||||||
|
@ -31,7 +29,5 @@ internal void CreateObjectSerializers()
|
||||||
{
|
{
|
||||||
writer.WriteNull();
|
writer.WriteNull();
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
;
|
|
||||||
}
|
}
|
|
@ -18,9 +18,7 @@ internal void CreateObjectSerializers()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
;
|
|
||||||
global::Microsoft.ReactNative.Managed.JSValueWriterOf<global::TestClass.MyClass>.WriteValue = (writer, value) =>
|
global::Microsoft.ReactNative.Managed.JSValueWriterOf<global::TestClass.MyClass>.WriteValue = (writer, value) =>
|
||||||
{
|
{
|
||||||
if (value != null)
|
if (value != null)
|
||||||
|
@ -34,7 +32,5 @@ internal void CreateObjectSerializers()
|
||||||
{
|
{
|
||||||
writer.WriteNull();
|
writer.WriteNull();
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
;
|
|
||||||
}
|
}
|
|
@ -12,9 +12,7 @@ internal void CreateObjectSerializers()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
;
|
|
||||||
global::Microsoft.ReactNative.Managed.JSValueWriterOf<global::TestClass.MyClass>.WriteValue = (writer, value) =>
|
global::Microsoft.ReactNative.Managed.JSValueWriterOf<global::TestClass.MyClass>.WriteValue = (writer, value) =>
|
||||||
{
|
{
|
||||||
if (value != null)
|
if (value != null)
|
||||||
|
@ -26,7 +24,5 @@ internal void CreateObjectSerializers()
|
||||||
{
|
{
|
||||||
writer.WriteNull();
|
writer.WriteNull();
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
;
|
|
||||||
}
|
}
|
|
@ -12,9 +12,7 @@ internal void CreateObjectSerializers()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
;
|
|
||||||
global::Microsoft.ReactNative.Managed.JSValueWriterOf<global::TestClass.MyClass>.WriteValue = (writer, value) =>
|
global::Microsoft.ReactNative.Managed.JSValueWriterOf<global::TestClass.MyClass>.WriteValue = (writer, value) =>
|
||||||
{
|
{
|
||||||
if (value != null)
|
if (value != null)
|
||||||
|
@ -26,7 +24,5 @@ internal void CreateObjectSerializers()
|
||||||
{
|
{
|
||||||
writer.WriteNull();
|
writer.WriteNull();
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
;
|
|
||||||
}
|
}
|
|
@ -12,9 +12,7 @@ internal void CreateObjectSerializers()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
;
|
|
||||||
global::Microsoft.ReactNative.Managed.JSValueWriterOf<global::TestClass.MyClass>.WriteValue = (writer, value) =>
|
global::Microsoft.ReactNative.Managed.JSValueWriterOf<global::TestClass.MyClass>.WriteValue = (writer, value) =>
|
||||||
{
|
{
|
||||||
if (value != null)
|
if (value != null)
|
||||||
|
@ -26,7 +24,5 @@ internal void CreateObjectSerializers()
|
||||||
{
|
{
|
||||||
writer.WriteNull();
|
writer.WriteNull();
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
|
|
||||||
;
|
|
||||||
}
|
}
|
|
@ -2,6 +2,4 @@ moduleBuilder.AddConstantProvider((global::Microsoft.ReactNative.IJSValueWriter
|
||||||
{
|
{
|
||||||
global::Microsoft.ReactNative.Managed.ReactConstantProvider provider = new global::Microsoft.ReactNative.Managed.ReactConstantProvider(writer);
|
global::Microsoft.ReactNative.Managed.ReactConstantProvider provider = new global::Microsoft.ReactNative.Managed.ReactConstantProvider(writer);
|
||||||
module.MyMethod(provider);
|
module.MyMethod(provider);
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -2,6 +2,4 @@ moduleBuilder.AddConstantProvider((global::Microsoft.ReactNative.IJSValueWriter
|
||||||
{
|
{
|
||||||
global::Microsoft.ReactNative.Managed.JSValueWriter.WriteObjectProperty(writer, "MyField1", module.MyField1);
|
global::Microsoft.ReactNative.Managed.JSValueWriter.WriteObjectProperty(writer, "MyField1", module.MyField1);
|
||||||
global::Microsoft.ReactNative.Managed.JSValueWriter.WriteObjectProperty(writer, "MyProp", module.MyProp);
|
global::Microsoft.ReactNative.Managed.JSValueWriter.WriteObjectProperty(writer, "MyProp", module.MyProp);
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -1,6 +1,4 @@
|
||||||
moduleBuilder.AddConstantProvider((global::Microsoft.ReactNative.IJSValueWriter writer) =>
|
moduleBuilder.AddConstantProvider((global::Microsoft.ReactNative.IJSValueWriter writer) =>
|
||||||
{
|
{
|
||||||
global::Microsoft.ReactNative.Managed.JSValueWriter.WriteObjectProperty(writer, "MyFieldWithBetterName", module.MyField);
|
global::Microsoft.ReactNative.Managed.JSValueWriter.WriteObjectProperty(writer, "MyFieldWithBetterName", module.MyField);
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -1,6 +1,4 @@
|
||||||
moduleBuilder.AddConstantProvider((global::Microsoft.ReactNative.IJSValueWriter writer) =>
|
moduleBuilder.AddConstantProvider((global::Microsoft.ReactNative.IJSValueWriter writer) =>
|
||||||
{
|
{
|
||||||
global::Microsoft.ReactNative.Managed.JSValueWriter.WriteObjectProperty(writer, "MyPropWithBetterName", module.MyPop);
|
global::Microsoft.ReactNative.Managed.JSValueWriter.WriteObjectProperty(writer, "MyPropWithBetterName", module.MyPop);
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -3,6 +3,4 @@ moduleBuilder.AddConstantProvider((global::Microsoft.ReactNative.IJSValueWriter
|
||||||
global::Microsoft.ReactNative.Managed.ReactConstantProvider provider = new global::Microsoft.ReactNative.Managed.ReactConstantProvider(writer);
|
global::Microsoft.ReactNative.Managed.ReactConstantProvider provider = new global::Microsoft.ReactNative.Managed.ReactConstantProvider(writer);
|
||||||
var constants = module.MyMethod();
|
var constants = module.MyMethod();
|
||||||
provider.WriteProperties(constants);
|
provider.WriteProperties(constants);
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -1,6 +1,4 @@
|
||||||
moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnType.TwoCallbacks, (global::Microsoft.ReactNative.IJSValueReader reader, global::Microsoft.ReactNative.IJSValueWriter writer, global::Microsoft.ReactNative.MethodResultCallback resolve, global::Microsoft.ReactNative.MethodResultCallback reject) =>
|
moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnType.TwoCallbacks, (global::Microsoft.ReactNative.IJSValueReader reader, global::Microsoft.ReactNative.IJSValueWriter writer, global::Microsoft.ReactNative.MethodResultCallback resolve, global::Microsoft.ReactNative.MethodResultCallback reject) =>
|
||||||
{
|
{
|
||||||
module.Method((value0) => resolve(global::Microsoft.ReactNative.Managed.JSValueWriter.WriteArgs(writer, value0)), (value0) => reject(global::Microsoft.ReactNative.Managed.JSValueWriter.WriteArgs(writer, value0)));
|
module.Method((value0) => resolve(global::Microsoft.ReactNative.Managed.JSValueWriter.WriteArgs(writer, value0)), (value0) => reject(global::Microsoft.ReactNative.Managed.JSValueWriter.WriteArgs(writer, value0)));
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -2,6 +2,4 @@ moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnTy
|
||||||
{
|
{
|
||||||
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out global::Microsoft.ReactNative.Managed.IReactPromise<string> arg0);
|
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out global::Microsoft.ReactNative.Managed.IReactPromise<string> arg0);
|
||||||
module.Method(arg0, new global::Microsoft.ReactNative.Managed.ReactPromise<int>(writer, resolve, reject));
|
module.Method(arg0, new global::Microsoft.ReactNative.Managed.ReactPromise<int>(writer, resolve, reject));
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -2,6 +2,4 @@ moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnTy
|
||||||
{
|
{
|
||||||
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out int arg0);
|
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out int arg0);
|
||||||
module.Method(arg0, (value0) => resolve(global::Microsoft.ReactNative.Managed.JSValueWriter.WriteArgs(writer, value0)), (value0) => reject(global::Microsoft.ReactNative.Managed.JSValueWriter.WriteArgs(writer, value0)));
|
module.Method(arg0, (value0) => resolve(global::Microsoft.ReactNative.Managed.JSValueWriter.WriteArgs(writer, value0)), (value0) => reject(global::Microsoft.ReactNative.Managed.JSValueWriter.WriteArgs(writer, value0)));
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -2,6 +2,4 @@ moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnTy
|
||||||
{
|
{
|
||||||
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out int arg0);
|
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out int arg0);
|
||||||
module.Method(arg0, (value0, value1, value2) => resolve(global::Microsoft.ReactNative.Managed.JSValueWriter.WriteArgs(writer, value0, value1, value2)), (value0, value1) => reject(global::Microsoft.ReactNative.Managed.JSValueWriter.WriteArgs(writer, value0, value1)));
|
module.Method(arg0, (value0, value1, value2) => resolve(global::Microsoft.ReactNative.Managed.JSValueWriter.WriteArgs(writer, value0, value1, value2)), (value0, value1) => reject(global::Microsoft.ReactNative.Managed.JSValueWriter.WriteArgs(writer, value0, value1)));
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -2,6 +2,4 @@ moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnTy
|
||||||
{
|
{
|
||||||
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out int arg0, out global::Microsoft.ReactNative.Managed.IReactPromise<string> arg1);
|
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out int arg0, out global::Microsoft.ReactNative.Managed.IReactPromise<string> arg1);
|
||||||
module.Method(arg0, arg1, new global::Microsoft.ReactNative.Managed.ReactPromise<int>(writer, resolve, reject));
|
module.Method(arg0, arg1, new global::Microsoft.ReactNative.Managed.ReactPromise<int>(writer, resolve, reject));
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -2,6 +2,4 @@ moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnTy
|
||||||
{
|
{
|
||||||
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out int arg0);
|
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out int arg0);
|
||||||
module.Method(arg0, new global::Microsoft.ReactNative.Managed.ReactPromise<int>(writer, resolve, reject));
|
module.Method(arg0, new global::Microsoft.ReactNative.Managed.ReactPromise<int>(writer, resolve, reject));
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -2,6 +2,4 @@ moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnTy
|
||||||
{
|
{
|
||||||
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out int arg0);
|
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out int arg0);
|
||||||
module.Method(arg0, (value0) => resolve(global::Microsoft.ReactNative.Managed.JSValueWriter.WriteArgs(writer, value0)));
|
module.Method(arg0, (value0) => resolve(global::Microsoft.ReactNative.Managed.JSValueWriter.WriteArgs(writer, value0)));
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -2,6 +2,4 @@ moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnTy
|
||||||
{
|
{
|
||||||
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out int arg0);
|
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out int arg0);
|
||||||
module.Method(arg0, (value0, value1, value2) => resolve(global::Microsoft.ReactNative.Managed.JSValueWriter.WriteArgs(writer, value0, value1, value2)));
|
module.Method(arg0, (value0, value1, value2) => resolve(global::Microsoft.ReactNative.Managed.JSValueWriter.WriteArgs(writer, value0, value1, value2)));
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -2,6 +2,4 @@ moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnTy
|
||||||
{
|
{
|
||||||
int result = module.Method();
|
int result = module.Method();
|
||||||
resolve(global::Microsoft.ReactNative.Managed.JSValueWriter.WriteArgs(writer, result));
|
resolve(global::Microsoft.ReactNative.Managed.JSValueWriter.WriteArgs(writer, result));
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -2,6 +2,4 @@ moduleBuilder.AddSyncMethod("MyMethod", (global::Microsoft.ReactNative.IJSValueR
|
||||||
{
|
{
|
||||||
int result = module.Method();
|
int result = module.Method();
|
||||||
global::Microsoft.ReactNative.Managed.JSValueWriter.WriteValue(writer, result);
|
global::Microsoft.ReactNative.Managed.JSValueWriter.WriteValue(writer, result);
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -1,6 +1,4 @@
|
||||||
moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnType.Void, (global::Microsoft.ReactNative.IJSValueReader reader, global::Microsoft.ReactNative.IJSValueWriter writer, global::Microsoft.ReactNative.MethodResultCallback resolve, global::Microsoft.ReactNative.MethodResultCallback reject) =>
|
moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnType.Void, (global::Microsoft.ReactNative.IJSValueReader reader, global::Microsoft.ReactNative.IJSValueWriter writer, global::Microsoft.ReactNative.MethodResultCallback resolve, global::Microsoft.ReactNative.MethodResultCallback reject) =>
|
||||||
{
|
{
|
||||||
module.Method();
|
module.Method();
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -3,6 +3,4 @@ moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnTy
|
||||||
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out int arg0);
|
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out int arg0);
|
||||||
int result = module.Method(arg0);
|
int result = module.Method(arg0);
|
||||||
resolve(global::Microsoft.ReactNative.Managed.JSValueWriter.WriteArgs(writer, result));
|
resolve(global::Microsoft.ReactNative.Managed.JSValueWriter.WriteArgs(writer, result));
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -3,6 +3,4 @@ moduleBuilder.AddSyncMethod("MyMethod", (global::Microsoft.ReactNative.IJSValueR
|
||||||
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out int arg0);
|
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out int arg0);
|
||||||
int result = module.Method(arg0);
|
int result = module.Method(arg0);
|
||||||
global::Microsoft.ReactNative.Managed.JSValueWriter.WriteValue(writer, result);
|
global::Microsoft.ReactNative.Managed.JSValueWriter.WriteValue(writer, result);
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -2,6 +2,4 @@ moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnTy
|
||||||
{
|
{
|
||||||
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out int arg0);
|
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out int arg0);
|
||||||
module.Method(arg0);
|
module.Method(arg0);
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -1,6 +1,4 @@
|
||||||
moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnType.Promise, (global::Microsoft.ReactNative.IJSValueReader reader, global::Microsoft.ReactNative.IJSValueWriter writer, global::Microsoft.ReactNative.MethodResultCallback resolve, global::Microsoft.ReactNative.MethodResultCallback reject) =>
|
moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnType.Promise, (global::Microsoft.ReactNative.IJSValueReader reader, global::Microsoft.ReactNative.IJSValueWriter writer, global::Microsoft.ReactNative.MethodResultCallback resolve, global::Microsoft.ReactNative.MethodResultCallback reject) =>
|
||||||
{
|
{
|
||||||
module.Method(new global::Microsoft.ReactNative.Managed.ReactPromise<int>(writer, resolve, reject));
|
module.Method(new global::Microsoft.ReactNative.Managed.ReactPromise<int>(writer, resolve, reject));
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -2,6 +2,4 @@ moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnTy
|
||||||
{
|
{
|
||||||
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out string arg0);
|
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out string arg0);
|
||||||
module.Method(arg0, new global::Microsoft.ReactNative.Managed.ReactPromise<int>(writer, resolve, reject));
|
module.Method(arg0, new global::Microsoft.ReactNative.Managed.ReactPromise<int>(writer, resolve, reject));
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -1,6 +1,4 @@
|
||||||
moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnType.Promise, (global::Microsoft.ReactNative.IJSValueReader reader, global::Microsoft.ReactNative.IJSValueWriter writer, global::Microsoft.ReactNative.MethodResultCallback resolve, global::Microsoft.ReactNative.MethodResultCallback reject) =>
|
moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnType.Promise, (global::Microsoft.ReactNative.IJSValueReader reader, global::Microsoft.ReactNative.IJSValueWriter writer, global::Microsoft.ReactNative.MethodResultCallback resolve, global::Microsoft.ReactNative.MethodResultCallback reject) =>
|
||||||
{
|
{
|
||||||
module.Method(new global::Microsoft.ReactNative.Managed.ReactPromise<int>(writer, resolve, reject));
|
module.Method(new global::Microsoft.ReactNative.Managed.ReactPromise<int>(writer, resolve, reject));
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -3,6 +3,4 @@ moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnTy
|
||||||
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out global::System.Collections.Generic.IReadOnlyList<string> arg0);
|
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out global::System.Collections.Generic.IReadOnlyList<string> arg0);
|
||||||
string result = module.Method(arg0);
|
string result = module.Method(arg0);
|
||||||
resolve(global::Microsoft.ReactNative.Managed.JSValueWriter.WriteArgs(writer, result));
|
resolve(global::Microsoft.ReactNative.Managed.JSValueWriter.WriteArgs(writer, result));
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -3,6 +3,4 @@ moduleBuilder.AddSyncMethod("MyMethod", (global::Microsoft.ReactNative.IJSValueR
|
||||||
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out global::System.Collections.Generic.IReadOnlyList<string> arg0);
|
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out global::System.Collections.Generic.IReadOnlyList<string> arg0);
|
||||||
string result = module.Method(arg0);
|
string result = module.Method(arg0);
|
||||||
global::Microsoft.ReactNative.Managed.JSValueWriter.WriteValue(writer, result);
|
global::Microsoft.ReactNative.Managed.JSValueWriter.WriteValue(writer, result);
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -2,6 +2,4 @@ moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnTy
|
||||||
{
|
{
|
||||||
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out string arg0);
|
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out string arg0);
|
||||||
module.Method(arg0, new global::Microsoft.ReactNative.Managed.ReactPromise<global::System.Collections.Generic.IReadOnlyList<string>>(writer, resolve, reject));
|
module.Method(arg0, new global::Microsoft.ReactNative.Managed.ReactPromise<global::System.Collections.Generic.IReadOnlyList<string>>(writer, resolve, reject));
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -1,6 +1,4 @@
|
||||||
moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnType.Callback, (global::Microsoft.ReactNative.IJSValueReader reader, global::Microsoft.ReactNative.IJSValueWriter writer, global::Microsoft.ReactNative.MethodResultCallback resolve, global::Microsoft.ReactNative.MethodResultCallback reject) =>
|
moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnType.Callback, (global::Microsoft.ReactNative.IJSValueReader reader, global::Microsoft.ReactNative.IJSValueWriter writer, global::Microsoft.ReactNative.MethodResultCallback resolve, global::Microsoft.ReactNative.MethodResultCallback reject) =>
|
||||||
{
|
{
|
||||||
module.Method((value0) => resolve(global::Microsoft.ReactNative.Managed.JSValueWriter.WriteArgs(writer, value0)));
|
module.Method((value0) => resolve(global::Microsoft.ReactNative.Managed.JSValueWriter.WriteArgs(writer, value0)));
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -1,6 +1,4 @@
|
||||||
moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnType.Callback, (global::Microsoft.ReactNative.IJSValueReader reader, global::Microsoft.ReactNative.IJSValueWriter writer, global::Microsoft.ReactNative.MethodResultCallback resolve, global::Microsoft.ReactNative.MethodResultCallback reject) =>
|
moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnType.Callback, (global::Microsoft.ReactNative.IJSValueReader reader, global::Microsoft.ReactNative.IJSValueWriter writer, global::Microsoft.ReactNative.MethodResultCallback resolve, global::Microsoft.ReactNative.MethodResultCallback reject) =>
|
||||||
{
|
{
|
||||||
module.Method((value0) => resolve(global::Microsoft.ReactNative.Managed.JSValueWriter.WriteArgs(writer, value0)));
|
module.Method((value0) => resolve(global::Microsoft.ReactNative.Managed.JSValueWriter.WriteArgs(writer, value0)));
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -3,6 +3,4 @@ moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnTy
|
||||||
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out int arg0, out string arg1, out double arg2);
|
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out int arg0, out string arg1, out double arg2);
|
||||||
int result = module.Method(arg0, arg1, arg2);
|
int result = module.Method(arg0, arg1, arg2);
|
||||||
resolve(global::Microsoft.ReactNative.Managed.JSValueWriter.WriteArgs(writer, result));
|
resolve(global::Microsoft.ReactNative.Managed.JSValueWriter.WriteArgs(writer, result));
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -3,6 +3,4 @@ moduleBuilder.AddSyncMethod("MyMethod", (global::Microsoft.ReactNative.IJSValueR
|
||||||
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out int arg0, out string arg1, out double arg2);
|
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out int arg0, out string arg1, out double arg2);
|
||||||
int result = module.Method(arg0, arg1, arg2);
|
int result = module.Method(arg0, arg1, arg2);
|
||||||
global::Microsoft.ReactNative.Managed.JSValueWriter.WriteValue(writer, result);
|
global::Microsoft.ReactNative.Managed.JSValueWriter.WriteValue(writer, result);
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -2,6 +2,4 @@ moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnTy
|
||||||
{
|
{
|
||||||
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out int arg0, out string arg1, out double arg2);
|
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out int arg0, out string arg1, out double arg2);
|
||||||
module.Method(arg0, arg1, arg2);
|
module.Method(arg0, arg1, arg2);
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -3,6 +3,4 @@ moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnTy
|
||||||
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out int arg0, out int arg1);
|
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out int arg0, out int arg1);
|
||||||
global::System.Threading.Tasks.Task result = module.Method(arg0, arg1);
|
global::System.Threading.Tasks.Task result = module.Method(arg0, arg1);
|
||||||
global::Microsoft.ReactNative.Managed.ReactTaskExtensions.ContinueWith(result, writer, resolve, reject);
|
global::Microsoft.ReactNative.Managed.ReactTaskExtensions.ContinueWith(result, writer, resolve, reject);
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -3,6 +3,4 @@ moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnTy
|
||||||
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out int arg0, out int arg1);
|
global::Microsoft.ReactNative.Managed.JSValueReader.ReadArgs(reader, out int arg0, out int arg1);
|
||||||
global::System.Threading.Tasks.Task<int> result = module.Method(arg0, arg1);
|
global::System.Threading.Tasks.Task<int> result = module.Method(arg0, arg1);
|
||||||
global::Microsoft.ReactNative.Managed.ReactTaskExtensions.ContinueWith(result, writer, resolve, reject);
|
global::Microsoft.ReactNative.Managed.ReactTaskExtensions.ContinueWith(result, writer, resolve, reject);
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
|
@ -2,6 +2,4 @@ moduleBuilder.AddMethod("MyMethod", global::Microsoft.ReactNative.MethodReturnTy
|
||||||
{
|
{
|
||||||
global::System.Threading.Tasks.Task result = module.Method();
|
global::System.Threading.Tasks.Task result = module.Method();
|
||||||
global::Microsoft.ReactNative.Managed.ReactTaskExtensions.ContinueWith(result, writer, resolve, reject);
|
global::Microsoft.ReactNative.Managed.ReactTaskExtensions.ContinueWith(result, writer, resolve, reject);
|
||||||
}
|
});
|
||||||
|
|
||||||
);
|
|
Некоторые файлы не были показаны из-за слишком большого количества измененных файлов Показать больше
Загрузка…
Ссылка в новой задаче