@react-native-windows/cli 0.0.0-canary.1 → 0.0.0-canary.102
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +49 -0
- package/lib-commonjs/config/configUtils.d.ts +27 -6
- package/lib-commonjs/config/configUtils.js +122 -45
- package/lib-commonjs/config/configUtils.js.map +1 -1
- package/lib-commonjs/config/dependencyConfig.d.ts +3 -3
- package/lib-commonjs/config/dependencyConfig.js +128 -54
- package/lib-commonjs/config/dependencyConfig.js.map +1 -1
- package/lib-commonjs/config/projectConfig.d.ts +6 -3
- package/lib-commonjs/config/projectConfig.js +68 -12
- package/lib-commonjs/config/projectConfig.js.map +1 -1
- package/lib-commonjs/e2etest/autolink.test.d.ts +6 -0
- package/lib-commonjs/e2etest/autolink.test.js +435 -0
- package/lib-commonjs/e2etest/autolink.test.js.map +1 -0
- package/lib-commonjs/e2etest/dependencyConfig.test.d.ts +6 -0
- package/lib-commonjs/e2etest/dependencyConfig.test.js +162 -0
- package/lib-commonjs/e2etest/dependencyConfig.test.js.map +1 -0
- package/lib-commonjs/e2etest/projectConfig.test.d.ts +6 -0
- package/lib-commonjs/e2etest/projectConfig.test.js +125 -0
- package/lib-commonjs/e2etest/projectConfig.test.js.map +1 -0
- package/lib-commonjs/e2etest/projectConfig.utils.d.ts +4 -0
- package/lib-commonjs/e2etest/projectConfig.utils.js +63 -0
- package/lib-commonjs/e2etest/projectConfig.utils.js.map +1 -0
- package/lib-commonjs/e2etest/runWindows.test.d.ts +6 -0
- package/lib-commonjs/e2etest/runWindows.test.js +61 -0
- package/lib-commonjs/e2etest/runWindows.test.js.map +1 -0
- package/lib-commonjs/generator-common/index.d.ts +16 -0
- package/lib-commonjs/generator-common/index.js +60 -39
- package/lib-commonjs/generator-common/index.js.map +1 -1
- package/lib-commonjs/generator-windows/index.d.ts +2 -2
- package/lib-commonjs/generator-windows/index.js +250 -145
- package/lib-commonjs/generator-windows/index.js.map +1 -1
- package/lib-commonjs/healthChecks.d.ts +2 -0
- package/lib-commonjs/healthChecks.js +88 -0
- package/lib-commonjs/healthChecks.js.map +1 -0
- package/lib-commonjs/index.d.ts +5 -0
- package/lib-commonjs/index.js +24 -6
- package/lib-commonjs/index.js.map +1 -1
- package/lib-commonjs/runWindows/runWindows.js +203 -55
- package/lib-commonjs/runWindows/runWindows.js.map +1 -1
- package/lib-commonjs/runWindows/runWindowsOptions.d.ts +16 -10
- package/lib-commonjs/runWindows/runWindowsOptions.js +19 -11
- package/lib-commonjs/runWindows/runWindowsOptions.js.map +1 -1
- package/lib-commonjs/runWindows/utils/autolink.d.ts +88 -1
- package/lib-commonjs/runWindows/utils/autolink.js +592 -250
- package/lib-commonjs/runWindows/utils/autolink.js.map +1 -1
- package/lib-commonjs/runWindows/utils/build.d.ts +1 -2
- package/lib-commonjs/runWindows/utils/build.js +26 -33
- package/lib-commonjs/runWindows/utils/build.js.map +1 -1
- package/lib-commonjs/runWindows/utils/checkRequirements.js +11 -7
- package/lib-commonjs/runWindows/utils/checkRequirements.js.map +1 -1
- package/lib-commonjs/runWindows/utils/commandWithProgress.d.ts +11 -3
- package/lib-commonjs/runWindows/utils/commandWithProgress.js +57 -22
- package/lib-commonjs/runWindows/utils/commandWithProgress.js.map +1 -1
- package/lib-commonjs/runWindows/utils/deploy.d.ts +1 -1
- package/lib-commonjs/runWindows/utils/deploy.js +164 -82
- package/lib-commonjs/runWindows/utils/deploy.js.map +1 -1
- package/lib-commonjs/runWindows/utils/info.js +5 -2
- package/lib-commonjs/runWindows/utils/info.js.map +1 -1
- package/lib-commonjs/runWindows/utils/msbuildtools.d.ts +9 -5
- package/lib-commonjs/runWindows/utils/msbuildtools.js +95 -58
- package/lib-commonjs/runWindows/utils/msbuildtools.js.map +1 -1
- package/lib-commonjs/runWindows/utils/telemetryHelpers.d.ts +29 -0
- package/lib-commonjs/runWindows/utils/telemetryHelpers.js +109 -0
- package/lib-commonjs/runWindows/utils/telemetryHelpers.js.map +1 -0
- package/lib-commonjs/runWindows/utils/version.d.ts +4 -4
- package/lib-commonjs/runWindows/utils/version.js.map +1 -1
- package/lib-commonjs/runWindows/utils/vsInstalls.d.ts +4 -1
- package/lib-commonjs/runWindows/utils/vsInstalls.js +22 -7
- package/lib-commonjs/runWindows/utils/vsInstalls.js.map +1 -1
- package/lib-commonjs/runWindows/utils/vstools.d.ts +1 -0
- package/lib-commonjs/runWindows/utils/vstools.js +44 -25
- package/lib-commonjs/runWindows/utils/vstools.js.map +1 -1
- package/lib-commonjs/runWindows/utils/winappdeploytool.d.ts +3 -3
- package/lib-commonjs/runWindows/utils/winappdeploytool.js +17 -14
- package/lib-commonjs/runWindows/utils/winappdeploytool.js.map +1 -1
- package/package.json +43 -27
- package/powershell/Add-AppDevPackage.ps1 +2 -2
- package/powershell/WindowsStoreAppUtils.ps1 +11 -1
- package/CHANGELOG.json +0 -20
- package/CHANGELOG.md +0 -13
- package/templates/_gitignore +0 -92
- package/templates/b_gitignore +0 -1
- package/templates/cpp/keys/MyApp_TemporaryKey.pfx +0 -0
- package/templates/cpp/proj/MyApp.sln +0 -194
- package/templates/cpp/proj/MyApp.vcxproj +0 -220
- package/templates/cpp/proj/MyApp.vcxproj.filters +0 -63
- package/templates/cpp/proj/packages.config +0 -6
- package/templates/cpp/src/App.cpp +0 -80
- package/templates/cpp/src/App.h +0 -25
- package/templates/cpp/src/App.idl +0 -3
- package/templates/cpp/src/AutolinkedNativeModules.g.cpp +0 -13
- package/templates/cpp/src/AutolinkedNativeModules.g.h +0 -10
- package/templates/cpp/src/AutolinkedNativeModules.g.targets +0 -6
- package/templates/cpp/src/MainPage.cpp +0 -24
- package/templates/cpp/src/MainPage.h +0 -21
- package/templates/cpp/src/MainPage.idl +0 -8
- package/templates/cpp/src/PropertySheet.props +0 -16
- package/templates/cpp/src/ReactPackageProvider.cpp +0 -18
- package/templates/cpp/src/ReactPackageProvider.h +0 -15
- package/templates/cpp/src/pch.cpp +0 -1
- package/templates/cpp/src/pch.h +0 -26
- package/templates/cs/keys/MyApp_TemporaryKey.pfx +0 -0
- package/templates/cs/proj/MyApp.csproj +0 -189
- package/templates/cs/proj/MyApp.sln +0 -208
- package/templates/cs/src/App.xaml.cs +0 -56
- package/templates/cs/src/AutolinkedNativeModules.g.cs +0 -13
- package/templates/cs/src/AutolinkedNativeModules.g.targets +0 -6
- package/templates/cs/src/MainPage.xaml.cs +0 -33
- package/templates/cs/src/Properties/AssemblyInfo.cs +0 -29
- package/templates/cs/src/Properties/Default.rd.xml +0 -32
- package/templates/index.windows.bundle +0 -9
- package/templates/metro.config.js +0 -29
- package/templates/shared/assets/LockScreenLogo.scale-200.png +0 -0
- package/templates/shared/assets/SplashScreen.scale-200.png +0 -0
- package/templates/shared/assets/Square150x150Logo.scale-200.png +0 -0
- package/templates/shared/assets/Square44x44Logo.scale-200.png +0 -0
- package/templates/shared/assets/Square44x44Logo.targetsize-24_altform-unplated.png +0 -0
- package/templates/shared/assets/StoreLogo.png +0 -0
- package/templates/shared/assets/Wide310x150Logo.scale-200.png +0 -0
- package/templates/shared/proj/NuGet.Config +0 -13
- package/templates/shared/src/App.xaml +0 -10
- package/templates/shared/src/MainPage.xaml +0 -21
- package/templates/shared/src/Package.appxmanifest +0 -50
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
#pragma once
|
|
2
|
-
#include "MainPage.g.h"
|
|
3
|
-
#include <winrt/Microsoft.ReactNative.h>
|
|
4
|
-
|
|
5
|
-
// clang-format off
|
|
6
|
-
namespace winrt::{{ namespaceCpp }}::implementation
|
|
7
|
-
{
|
|
8
|
-
struct MainPage : MainPageT<MainPage>
|
|
9
|
-
{
|
|
10
|
-
MainPage();
|
|
11
|
-
};
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
namespace winrt::{{ namespaceCpp }}::factory_implementation
|
|
15
|
-
{
|
|
16
|
-
struct MainPage : MainPageT<MainPage, implementation::MainPage>
|
|
17
|
-
{
|
|
18
|
-
};
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
// clang-format on
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
-
<ImportGroup Label="PropertySheets" />
|
|
4
|
-
<PropertyGroup Label="UserMacros" />
|
|
5
|
-
<!--
|
|
6
|
-
To customize common C++/WinRT project properties:
|
|
7
|
-
* right-click the project node
|
|
8
|
-
* expand the Common Properties item
|
|
9
|
-
* select the C++/WinRT property page
|
|
10
|
-
|
|
11
|
-
For more advanced scenarios, and complete documentation, please see:
|
|
12
|
-
https://github.com/Microsoft/xlang/tree/master/src/package/cppwinrt/nuget
|
|
13
|
-
-->
|
|
14
|
-
<PropertyGroup />
|
|
15
|
-
<ItemDefinitionGroup />
|
|
16
|
-
</Project>
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
#include "pch.h"
|
|
2
|
-
#include "ReactPackageProvider.h"
|
|
3
|
-
#include "NativeModules.h"
|
|
4
|
-
|
|
5
|
-
// clang-format off
|
|
6
|
-
using namespace winrt::Microsoft::ReactNative;
|
|
7
|
-
|
|
8
|
-
namespace winrt::{{ namespaceCpp }}::implementation
|
|
9
|
-
{
|
|
10
|
-
|
|
11
|
-
void ReactPackageProvider::CreatePackage(IReactPackageBuilder const &packageBuilder) noexcept
|
|
12
|
-
{
|
|
13
|
-
AddAttributedModules(packageBuilder);
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
} // namespace winrt::{{ namespaceCpp }}::implementation
|
|
17
|
-
|
|
18
|
-
// clang-format on
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
#pragma once
|
|
2
|
-
|
|
3
|
-
#include "winrt/Microsoft.ReactNative.h"
|
|
4
|
-
|
|
5
|
-
// clang-format off
|
|
6
|
-
namespace winrt::{{ namespaceCpp }}::implementation
|
|
7
|
-
{
|
|
8
|
-
struct ReactPackageProvider : winrt::implements<ReactPackageProvider, winrt::Microsoft::ReactNative::IReactPackageProvider>
|
|
9
|
-
{
|
|
10
|
-
public: // IReactPackageProvider
|
|
11
|
-
void CreatePackage(winrt::Microsoft::ReactNative::IReactPackageBuilder const &packageBuilder) noexcept;
|
|
12
|
-
};
|
|
13
|
-
} // namespace winrt::{{ namespaceCpp }}::implementation
|
|
14
|
-
|
|
15
|
-
// clang-format on
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
#include "pch.h"
|
package/templates/cpp/src/pch.h
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
#pragma once
|
|
2
|
-
|
|
3
|
-
#define NOMINMAX
|
|
4
|
-
|
|
5
|
-
#include <hstring.h>
|
|
6
|
-
#include <restrictederrorinfo.h>
|
|
7
|
-
#include <unknwn.h>
|
|
8
|
-
#include <windows.h>
|
|
9
|
-
#include <winrt/Windows.ApplicationModel.Activation.h>
|
|
10
|
-
#include <winrt/Windows.Foundation.Collections.h>
|
|
11
|
-
#include <winrt/Windows.Foundation.h>
|
|
12
|
-
#include <winrt/{{ xamlNamespace }}.Controls.Primitives.h>
|
|
13
|
-
#include <winrt/{{ xamlNamespace }}.Controls.h>
|
|
14
|
-
#include <winrt/{{ xamlNamespace }}.Data.h>
|
|
15
|
-
#include <winrt/{{ xamlNamespace }}.Interop.h>
|
|
16
|
-
#include <winrt/{{ xamlNamespace }}.Markup.h>
|
|
17
|
-
#include <winrt/{{ xamlNamespace }}.Navigation.h>
|
|
18
|
-
#include <winrt/{{ xamlNamespace }}.h>
|
|
19
|
-
|
|
20
|
-
#include <winrt/Microsoft.ReactNative.h>
|
|
21
|
-
|
|
22
|
-
#include <winrt/Microsoft.UI.Xaml.Automation.Peers.h>
|
|
23
|
-
#include <winrt/Microsoft.UI.Xaml.Controls.Primitives.h>
|
|
24
|
-
#include <winrt/Microsoft.UI.Xaml.Controls.h>
|
|
25
|
-
#include <winrt/Microsoft.UI.Xaml.Media.h>
|
|
26
|
-
#include <winrt/Microsoft.UI.Xaml.XamlTypeInfo.h>
|
|
Binary file
|
|
@@ -1,189 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<Project ToolsVersion="16.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
-
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
|
4
|
-
<PropertyGroup Label="ReactNativeWindowsProps">
|
|
5
|
-
<ReactNativeWindowsDir Condition="'$(ReactNativeWindowsDir)' == ''">$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), 'node_modules\react-native-windows\package.json'))\node_modules\react-native-windows\</ReactNativeWindowsDir>
|
|
6
|
-
</PropertyGroup>
|
|
7
|
-
<PropertyGroup>
|
|
8
|
-
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
9
|
-
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
|
10
|
-
<ProjectGuid>{{ projectGuidUpper }}</ProjectGuid>
|
|
11
|
-
<OutputType>AppContainerExe</OutputType>
|
|
12
|
-
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
13
|
-
<RootNamespace>{{namespace}}</RootNamespace>
|
|
14
|
-
<AssemblyName>{{namespace}}</AssemblyName>
|
|
15
|
-
<DefaultLanguage>en-US</DefaultLanguage>
|
|
16
|
-
<TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
|
|
17
|
-
<TargetPlatformVersion Condition=" '$(TargetPlatformVersion)' == '' ">10.0.18362.0</TargetPlatformVersion>
|
|
18
|
-
<TargetPlatformMinVersion>10.0.16299.0</TargetPlatformMinVersion>
|
|
19
|
-
<MinimumVisualStudioVersion>16.0</MinimumVisualStudioVersion>
|
|
20
|
-
<FileAlignment>512</FileAlignment>
|
|
21
|
-
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
|
22
|
-
<WindowsXamlEnableOverview>true</WindowsXamlEnableOverview>
|
|
23
|
-
<PackageCertificateKeyFile>{{ name }}_TemporaryKey.pfx</PackageCertificateKeyFile>
|
|
24
|
-
{{#certificateThumbprint}}
|
|
25
|
-
<PackageCertificateThumbprint>{{certificateThumbprint}}</PackageCertificateThumbprint>
|
|
26
|
-
{{/certificateThumbprint}}
|
|
27
|
-
<PackageCertificatePassword>password</PackageCertificatePassword>
|
|
28
|
-
<AppxGeneratePrisForPortableLibrariesEnabled>false</AppxGeneratePrisForPortableLibrariesEnabled>
|
|
29
|
-
<LangVersion>7.3</LangVersion>
|
|
30
|
-
{{#useExperimentalNuget}}
|
|
31
|
-
<UseExperimentalNuget>true</UseExperimentalNuget> <!-- This will eventually default to true and this property should be removed -->
|
|
32
|
-
{{/useExperimentalNuget}}
|
|
33
|
-
</PropertyGroup>
|
|
34
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
|
|
35
|
-
<DebugSymbols>true</DebugSymbols>
|
|
36
|
-
<OutputPath>bin\x86\Debug\</OutputPath>
|
|
37
|
-
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
|
38
|
-
<NoWarn>;2008</NoWarn>
|
|
39
|
-
<DebugType>full</DebugType>
|
|
40
|
-
<PlatformTarget>x86</PlatformTarget>
|
|
41
|
-
<UseVSHostingProcess>false</UseVSHostingProcess>
|
|
42
|
-
<ErrorReport>prompt</ErrorReport>
|
|
43
|
-
<Prefer32Bit>true</Prefer32Bit>
|
|
44
|
-
</PropertyGroup>
|
|
45
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
|
|
46
|
-
<OutputPath>bin\x86\Release\</OutputPath>
|
|
47
|
-
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
|
48
|
-
<Optimize>true</Optimize>
|
|
49
|
-
<NoWarn>;2008</NoWarn>
|
|
50
|
-
<DebugType>pdbonly</DebugType>
|
|
51
|
-
<PlatformTarget>x86</PlatformTarget>
|
|
52
|
-
<UseVSHostingProcess>false</UseVSHostingProcess>
|
|
53
|
-
<ErrorReport>prompt</ErrorReport>
|
|
54
|
-
<Prefer32Bit>true</Prefer32Bit>
|
|
55
|
-
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
|
|
56
|
-
</PropertyGroup>
|
|
57
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'">
|
|
58
|
-
<DebugSymbols>true</DebugSymbols>
|
|
59
|
-
<OutputPath>bin\ARM\Debug\</OutputPath>
|
|
60
|
-
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
|
61
|
-
<NoWarn>;2008</NoWarn>
|
|
62
|
-
<DebugType>full</DebugType>
|
|
63
|
-
<PlatformTarget>ARM</PlatformTarget>
|
|
64
|
-
<UseVSHostingProcess>false</UseVSHostingProcess>
|
|
65
|
-
<ErrorReport>prompt</ErrorReport>
|
|
66
|
-
<Prefer32Bit>true</Prefer32Bit>
|
|
67
|
-
</PropertyGroup>
|
|
68
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM'">
|
|
69
|
-
<OutputPath>bin\ARM\Release\</OutputPath>
|
|
70
|
-
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
|
71
|
-
<Optimize>true</Optimize>
|
|
72
|
-
<NoWarn>;2008</NoWarn>
|
|
73
|
-
<DebugType>pdbonly</DebugType>
|
|
74
|
-
<PlatformTarget>ARM</PlatformTarget>
|
|
75
|
-
<UseVSHostingProcess>false</UseVSHostingProcess>
|
|
76
|
-
<ErrorReport>prompt</ErrorReport>
|
|
77
|
-
<Prefer32Bit>true</Prefer32Bit>
|
|
78
|
-
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
|
|
79
|
-
</PropertyGroup>
|
|
80
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM64'">
|
|
81
|
-
<DebugSymbols>true</DebugSymbols>
|
|
82
|
-
<OutputPath>bin\ARM64\Debug\</OutputPath>
|
|
83
|
-
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
|
84
|
-
<NoWarn>;2008</NoWarn>
|
|
85
|
-
<DebugType>full</DebugType>
|
|
86
|
-
<PlatformTarget>ARM64</PlatformTarget>
|
|
87
|
-
<UseVSHostingProcess>false</UseVSHostingProcess>
|
|
88
|
-
<ErrorReport>prompt</ErrorReport>
|
|
89
|
-
<Prefer32Bit>true</Prefer32Bit>
|
|
90
|
-
</PropertyGroup>
|
|
91
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM64'">
|
|
92
|
-
<OutputPath>bin\ARM64\Release\</OutputPath>
|
|
93
|
-
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
|
94
|
-
<Optimize>true</Optimize>
|
|
95
|
-
<NoWarn>;2008</NoWarn>
|
|
96
|
-
<DebugType>pdbonly</DebugType>
|
|
97
|
-
<PlatformTarget>ARM64</PlatformTarget>
|
|
98
|
-
<UseVSHostingProcess>false</UseVSHostingProcess>
|
|
99
|
-
<ErrorReport>prompt</ErrorReport>
|
|
100
|
-
<Prefer32Bit>true</Prefer32Bit>
|
|
101
|
-
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
|
|
102
|
-
</PropertyGroup>
|
|
103
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
|
104
|
-
<DebugSymbols>true</DebugSymbols>
|
|
105
|
-
<OutputPath>bin\x64\Debug\</OutputPath>
|
|
106
|
-
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
|
107
|
-
<NoWarn>;2008</NoWarn>
|
|
108
|
-
<DebugType>full</DebugType>
|
|
109
|
-
<PlatformTarget>x64</PlatformTarget>
|
|
110
|
-
<UseVSHostingProcess>false</UseVSHostingProcess>
|
|
111
|
-
<ErrorReport>prompt</ErrorReport>
|
|
112
|
-
<Prefer32Bit>true</Prefer32Bit>
|
|
113
|
-
</PropertyGroup>
|
|
114
|
-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
|
115
|
-
<OutputPath>bin\x64\Release\</OutputPath>
|
|
116
|
-
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
|
|
117
|
-
<Optimize>true</Optimize>
|
|
118
|
-
<NoWarn>;2008</NoWarn>
|
|
119
|
-
<DebugType>pdbonly</DebugType>
|
|
120
|
-
<PlatformTarget>x64</PlatformTarget>
|
|
121
|
-
<UseVSHostingProcess>false</UseVSHostingProcess>
|
|
122
|
-
<ErrorReport>prompt</ErrorReport>
|
|
123
|
-
<Prefer32Bit>true</Prefer32Bit>
|
|
124
|
-
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
|
|
125
|
-
</PropertyGroup>
|
|
126
|
-
<PropertyGroup>
|
|
127
|
-
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
|
|
128
|
-
</PropertyGroup>
|
|
129
|
-
<ItemGroup>
|
|
130
|
-
<Compile Include="App.xaml.cs">
|
|
131
|
-
<DependentUpon>App.xaml</DependentUpon>
|
|
132
|
-
</Compile>
|
|
133
|
-
<Compile Include="MainPage.xaml.cs">
|
|
134
|
-
<DependentUpon>MainPage.xaml</DependentUpon>
|
|
135
|
-
</Compile>
|
|
136
|
-
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
137
|
-
<Compile Include="AutolinkedNativeModules.g.cs" />
|
|
138
|
-
</ItemGroup>
|
|
139
|
-
<ItemGroup>
|
|
140
|
-
<AppxManifest Include="Package.appxmanifest">
|
|
141
|
-
<SubType>Designer</SubType>
|
|
142
|
-
</AppxManifest>
|
|
143
|
-
<None Include="{{ name }}_TemporaryKey.pfx" />
|
|
144
|
-
</ItemGroup>
|
|
145
|
-
<ItemGroup>
|
|
146
|
-
<Content Include="Properties\Default.rd.xml" />
|
|
147
|
-
<Content Include="Assets\LockScreenLogo.scale-200.png" />
|
|
148
|
-
<Content Include="Assets\SplashScreen.scale-200.png" />
|
|
149
|
-
<Content Include="Assets\Square150x150Logo.scale-200.png" />
|
|
150
|
-
<Content Include="Assets\Square44x44Logo.scale-200.png" />
|
|
151
|
-
<Content Include="Assets\Square44x44Logo.targetsize-24_altform-unplated.png" />
|
|
152
|
-
<Content Include="Assets\StoreLogo.png" />
|
|
153
|
-
<Content Include="Assets\Wide310x150Logo.scale-200.png" />
|
|
154
|
-
</ItemGroup>
|
|
155
|
-
<ItemGroup>
|
|
156
|
-
<ApplicationDefinition Include="App.xaml">
|
|
157
|
-
<Generator>MSBuild:Compile</Generator>
|
|
158
|
-
<SubType>Designer</SubType>
|
|
159
|
-
</ApplicationDefinition>
|
|
160
|
-
<Page Include="MainPage.xaml">
|
|
161
|
-
<Generator>MSBuild:Compile</Generator>
|
|
162
|
-
<SubType>Designer</SubType>
|
|
163
|
-
</Page>
|
|
164
|
-
</ItemGroup>
|
|
165
|
-
<ItemGroup>
|
|
166
|
-
{{#csNugetPackages}}
|
|
167
|
-
<PackageReference Include="{{ id }}">
|
|
168
|
-
<Version>{{ version }}</Version>
|
|
169
|
-
</PackageReference>
|
|
170
|
-
{{/csNugetPackages}}
|
|
171
|
-
</ItemGroup>
|
|
172
|
-
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' < '16.0' ">
|
|
173
|
-
<VisualStudioVersion>16.0</VisualStudioVersion>
|
|
174
|
-
</PropertyGroup>
|
|
175
|
-
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
|
|
176
|
-
<ImportGroup Label="ReactNativeWindowsPropertySheets">
|
|
177
|
-
<Import Project="$(ReactNativeWindowsDir)\PropertySheets\External\Microsoft.ReactNative.Uwp.CSharpApp.props" Condition="Exists('$(ReactNativeWindowsDir)\PropertySheets\External\Microsoft.ReactNative.Uwp.CSharpApp.props')" />
|
|
178
|
-
</ImportGroup>
|
|
179
|
-
<ImportGroup Label="ReactNativeWindowsTargets">
|
|
180
|
-
<Import Project="$(ReactNativeWindowsDir)\PropertySheets\External\Microsoft.ReactNative.Uwp.CSharpApp.targets" Condition="Exists('$(ReactNativeWindowsDir)\PropertySheets\External\Microsoft.ReactNative.Uwp.CSharpApp.targets')" />
|
|
181
|
-
</ImportGroup>
|
|
182
|
-
<Target Name="EnsureReactNativeWindowsTargets" BeforeTargets="PrepareForBuild">
|
|
183
|
-
<PropertyGroup>
|
|
184
|
-
<ErrorText>This project references targets in your node_modules\react-native-windows folder. The missing file is {0}.</ErrorText>
|
|
185
|
-
</PropertyGroup>
|
|
186
|
-
<Error Condition="!Exists('$(ReactNativeWindowsDir)\PropertySheets\External\Microsoft.ReactNative.Uwp.CSharpApp.props')" Text="$([System.String]::Format('$(ErrorText)', '$(ReactNativeWindowsDir)\PropertySheets\External\Microsoft.ReactNative.Uwp.CSharpApp.props'))" />
|
|
187
|
-
<Error Condition="!Exists('$(ReactNativeWindowsDir)\PropertySheets\External\Microsoft.ReactNative.Uwp.CSharpApp.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(ReactNativeWindowsDir)\PropertySheets\External\Microsoft.ReactNative.Uwp.CSharpApp.targets'))" />
|
|
188
|
-
</Target>
|
|
189
|
-
</Project>
|
|
@@ -1,208 +0,0 @@
|
|
|
1
|
-
|
|
2
|
-
Microsoft Visual Studio Solution File, Format Version 12.00
|
|
3
|
-
# Visual Studio Version 16
|
|
4
|
-
VisualStudioVersion = 16.0.29215.179
|
|
5
|
-
MinimumVisualStudioVersion = 10.0.40219.1
|
|
6
|
-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "{{ name }}", "{{ name }}\{{ name }}.csproj", "{{ projectGuidUpper }}"
|
|
7
|
-
EndProject
|
|
8
|
-
{{^useExperimentalNuget}}
|
|
9
|
-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Folly", "..\node_modules\react-native-windows\Folly\Folly.vcxproj", "{A990658C-CE31-4BCC-976F-0FC6B1AF693D}"
|
|
10
|
-
EndProject
|
|
11
|
-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ReactCommon", "..\node_modules\react-native-windows\ReactCommon\ReactCommon.vcxproj", "{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}"
|
|
12
|
-
ProjectSection(ProjectDependencies) = postProject
|
|
13
|
-
{A990658C-CE31-4BCC-976F-0FC6B1AF693D} = {A990658C-CE31-4BCC-976F-0FC6B1AF693D}
|
|
14
|
-
EndProjectSection
|
|
15
|
-
EndProject
|
|
16
|
-
ProjectSection(ProjectDependencies) = postProject
|
|
17
|
-
{A990658C-CE31-4BCC-976F-0FC6B1AF693D} = {A990658C-CE31-4BCC-976F-0FC6B1AF693D}
|
|
18
|
-
EndProjectSection
|
|
19
|
-
EndProject
|
|
20
|
-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Chakra", "..\node_modules\react-native-windows\Chakra\Chakra.vcxitems", "{C38970C0-5FBF-4D69-90D8-CBAC225AE895}"
|
|
21
|
-
EndProject
|
|
22
|
-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Microsoft.ReactNative", "..\node_modules\react-native-windows\Microsoft.ReactNative\Microsoft.ReactNative.vcxproj", "{F7D32BD0-2749-483E-9A0D-1635EF7E3136}"
|
|
23
|
-
EndProject
|
|
24
|
-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "JSI.Shared", "..\node_modules\react-native-windows\JSI\Shared\JSI.Shared.vcxitems", "{0CC28589-39E4-4288-B162-97B959F8B843}"
|
|
25
|
-
EndProject
|
|
26
|
-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "JSI.Universal", "..\node_modules\react-native-windows\JSI\Universal\JSI.Universal.vcxproj", "{A62D504A-16B8-41D2-9F19-E2E86019E5E4}"
|
|
27
|
-
EndProject
|
|
28
|
-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Microsoft.ReactNative.Cxx", "..\node_modules\react-native-windows\Microsoft.ReactNative.Cxx\Microsoft.ReactNative.Cxx.vcxitems", "{DA8B35B3-DA00-4B02-BDE6-6A397B3FD46B}"
|
|
29
|
-
EndProject
|
|
30
|
-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Common", "..\node_modules\react-native-windows\Common\Common.vcxproj", "{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}"
|
|
31
|
-
EndProject
|
|
32
|
-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "ReactNative", "ReactNative", "{5EA20F54-880A-49F3-99FA-4B3FE54E8AB1}"
|
|
33
|
-
EndProject
|
|
34
|
-
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "Microsoft.ReactNative.Shared", "..\node_modules\react-native-windows\Shared\Shared.vcxitems", "{2049DBE9-8D13-42C9-AE4B-413AE38FFFD0}"
|
|
35
|
-
EndProject
|
|
36
|
-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Microsoft.ReactNative.Managed", "..\node_modules\react-native-windows\Microsoft.ReactNative.Managed\Microsoft.ReactNative.Managed.csproj", "{F2824844-CE15-4242-9420-308923CD76C3}"
|
|
37
|
-
EndProject
|
|
38
|
-
{{/useExperimentalNuget}}
|
|
39
|
-
Global
|
|
40
|
-
{{^useExperimentalNuget}}
|
|
41
|
-
GlobalSection(SharedMSBuildProjectFiles) = preSolution
|
|
42
|
-
..\node_modules\react-native-windows\JSI\Shared\JSI.Shared.vcxitems*{0cc28589-39e4-4288-b162-97b959f8b843}*SharedItemsImports = 9
|
|
43
|
-
..\node_modules\react-native-windows\Shared\Shared.vcxitems*{2049dbe9-8d13-42c9-ae4b-413ae38fffd0}*SharedItemsImports = 9
|
|
44
|
-
..\node_modules\react-native-windows\JSI\Shared\JSI.Shared.vcxitems*{a62d504a-16b8-41d2-9f19-e2e86019e5e4}*SharedItemsImports = 4
|
|
45
|
-
..\node_modules\react-native-windows\Chakra\Chakra.vcxitems*{c38970c0-5fbf-4d69-90d8-cbac225ae895}*SharedItemsImports = 9
|
|
46
|
-
..\node_modules\react-native-windows\Microsoft.ReactNative.Cxx\Microsoft.ReactNative.Cxx.vcxitems*{da8b35b3-da00-4b02-bde6-6a397b3fd46b}*SharedItemsImports = 9
|
|
47
|
-
..\node_modules\react-native-windows\Chakra\Chakra.vcxitems*{f7d32bd0-2749-483e-9a0d-1635ef7e3136}*SharedItemsImports = 4
|
|
48
|
-
..\node_modules\react-native-windows\JSI\Shared\JSI.Shared.vcxitems*{f7d32bd0-2749-483e-9a0d-1635ef7e3136}*SharedItemsImports = 4
|
|
49
|
-
..\node_modules\react-native-windows\Microsoft.ReactNative.Cxx\Microsoft.ReactNative.Cxx.vcxitems*{f7d32bd0-2749-483e-9a0d-1635ef7e3136}*SharedItemsImports = 4
|
|
50
|
-
..\node_modules\react-native-windows\Mso\Mso.vcxitems*{f7d32bd0-2749-483e-9a0d-1635ef7e3136}*SharedItemsImports = 4
|
|
51
|
-
..\node_modules\react-native-windows\Shared\Shared.vcxitems*{f7d32bd0-2749-483e-9a0d-1635ef7e3136}*SharedItemsImports = 4
|
|
52
|
-
EndGlobalSection
|
|
53
|
-
{{/useExperimentalNuget}}
|
|
54
|
-
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
|
55
|
-
Debug|ARM = Debug|ARM
|
|
56
|
-
Debug|ARM64 = Debug|ARM64
|
|
57
|
-
Debug|x64 = Debug|x64
|
|
58
|
-
Debug|x86 = Debug|x86
|
|
59
|
-
Release|ARM = Release|ARM
|
|
60
|
-
Release|ARM64 = Release|ARM64
|
|
61
|
-
Release|x64 = Release|x64
|
|
62
|
-
Release|x86 = Release|x86
|
|
63
|
-
EndGlobalSection
|
|
64
|
-
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
|
65
|
-
{{ projectGuidUpper }}.Debug|ARM.ActiveCfg = Debug|ARM
|
|
66
|
-
{{ projectGuidUpper }}.Debug|ARM.Build.0 = Debug|ARM
|
|
67
|
-
{{ projectGuidUpper }}.Debug|ARM.Deploy.0 = Debug|ARM
|
|
68
|
-
{{ projectGuidUpper }}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
|
69
|
-
{{ projectGuidUpper }}.Debug|ARM64.Build.0 = Debug|ARM64
|
|
70
|
-
{{ projectGuidUpper }}.Debug|ARM64.Deploy.0 = Debug|ARM64
|
|
71
|
-
{{ projectGuidUpper }}.Debug|x64.ActiveCfg = Debug|x64
|
|
72
|
-
{{ projectGuidUpper }}.Debug|x64.Build.0 = Debug|x64
|
|
73
|
-
{{ projectGuidUpper }}.Debug|x64.Deploy.0 = Debug|x64
|
|
74
|
-
{{ projectGuidUpper }}.Debug|x86.ActiveCfg = Debug|x86
|
|
75
|
-
{{ projectGuidUpper }}.Debug|x86.Build.0 = Debug|x86
|
|
76
|
-
{{ projectGuidUpper }}.Debug|x86.Deploy.0 = Debug|x86
|
|
77
|
-
{{ projectGuidUpper }}.Release|ARM.ActiveCfg = Release|ARM
|
|
78
|
-
{{ projectGuidUpper }}.Release|ARM.Build.0 = Release|ARM
|
|
79
|
-
{{ projectGuidUpper }}.Release|ARM.Deploy.0 = Release|ARM
|
|
80
|
-
{{ projectGuidUpper }}.Release|ARM64.ActiveCfg = Release|ARM64
|
|
81
|
-
{{ projectGuidUpper }}.Release|ARM64.Build.0 = Release|ARM64
|
|
82
|
-
{{ projectGuidUpper }}.Release|ARM64.Deploy.0 = Release|ARM64
|
|
83
|
-
{{ projectGuidUpper }}.Release|x64.ActiveCfg = Release|x64
|
|
84
|
-
{{ projectGuidUpper }}.Release|x64.Build.0 = Release|x64
|
|
85
|
-
{{ projectGuidUpper }}.Release|x64.Deploy.0 = Release|x64
|
|
86
|
-
{{ projectGuidUpper }}.Release|x86.ActiveCfg = Release|x86
|
|
87
|
-
{{ projectGuidUpper }}.Release|x86.Build.0 = Release|x86
|
|
88
|
-
{{ projectGuidUpper }}.Release|x86.Deploy.0 = Release|x86
|
|
89
|
-
{{^useExperimentalNuget}}
|
|
90
|
-
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Debug|ARM.ActiveCfg = Debug|ARM
|
|
91
|
-
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Debug|ARM.Build.0 = Debug|ARM
|
|
92
|
-
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
|
93
|
-
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Debug|ARM64.Build.0 = Debug|ARM64
|
|
94
|
-
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Debug|x64.ActiveCfg = Debug|x64
|
|
95
|
-
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Debug|x64.Build.0 = Debug|x64
|
|
96
|
-
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Debug|x86.ActiveCfg = Debug|Win32
|
|
97
|
-
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Debug|x86.Build.0 = Debug|Win32
|
|
98
|
-
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Release|ARM.ActiveCfg = Release|ARM
|
|
99
|
-
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Release|ARM.Build.0 = Release|ARM
|
|
100
|
-
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Release|ARM64.ActiveCfg = Release|ARM64
|
|
101
|
-
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Release|ARM64.Build.0 = Release|ARM64
|
|
102
|
-
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Release|x64.ActiveCfg = Release|x64
|
|
103
|
-
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Release|x64.Build.0 = Release|x64
|
|
104
|
-
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Release|x86.ActiveCfg = Release|Win32
|
|
105
|
-
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Release|x86.Build.0 = Release|Win32
|
|
106
|
-
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}.Debug|ARM.ActiveCfg = Debug|ARM
|
|
107
|
-
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}.Debug|ARM.Build.0 = Debug|ARM
|
|
108
|
-
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
|
109
|
-
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}.Debug|ARM64.Build.0 = Debug|ARM64
|
|
110
|
-
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}.Debug|x64.ActiveCfg = Debug|x64
|
|
111
|
-
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}.Debug|x64.Build.0 = Debug|x64
|
|
112
|
-
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}.Debug|x86.ActiveCfg = Debug|Win32
|
|
113
|
-
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}.Debug|x86.Build.0 = Debug|Win32
|
|
114
|
-
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}.Release|ARM.ActiveCfg = Release|ARM
|
|
115
|
-
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}.Release|ARM.Build.0 = Release|ARM
|
|
116
|
-
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}.Release|ARM64.ActiveCfg = Release|ARM64
|
|
117
|
-
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}.Release|ARM64.Build.0 = Release|ARM64
|
|
118
|
-
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}.Release|x64.ActiveCfg = Release|x64
|
|
119
|
-
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}.Release|x64.Build.0 = Release|x64
|
|
120
|
-
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}.Release|x86.ActiveCfg = Release|Win32
|
|
121
|
-
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD}.Release|x86.Build.0 = Release|Win32
|
|
122
|
-
{F7D32BD0-2749-483E-9A0D-1635EF7E3136}.Debug|ARM.ActiveCfg = Debug|ARM
|
|
123
|
-
{F7D32BD0-2749-483E-9A0D-1635EF7E3136}.Debug|ARM.Build.0 = Debug|ARM
|
|
124
|
-
{F7D32BD0-2749-483E-9A0D-1635EF7E3136}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
|
125
|
-
{F7D32BD0-2749-483E-9A0D-1635EF7E3136}.Debug|ARM64.Build.0 = Debug|ARM64
|
|
126
|
-
{F7D32BD0-2749-483E-9A0D-1635EF7E3136}.Debug|x64.ActiveCfg = Debug|x64
|
|
127
|
-
{F7D32BD0-2749-483E-9A0D-1635EF7E3136}.Debug|x64.Build.0 = Debug|x64
|
|
128
|
-
{F7D32BD0-2749-483E-9A0D-1635EF7E3136}.Debug|x86.ActiveCfg = Debug|Win32
|
|
129
|
-
{F7D32BD0-2749-483E-9A0D-1635EF7E3136}.Debug|x86.Build.0 = Debug|Win32
|
|
130
|
-
{F7D32BD0-2749-483E-9A0D-1635EF7E3136}.Release|ARM.ActiveCfg = Release|ARM
|
|
131
|
-
{F7D32BD0-2749-483E-9A0D-1635EF7E3136}.Release|ARM.Build.0 = Release|ARM
|
|
132
|
-
{F7D32BD0-2749-483E-9A0D-1635EF7E3136}.Release|ARM64.ActiveCfg = Release|ARM64
|
|
133
|
-
{F7D32BD0-2749-483E-9A0D-1635EF7E3136}.Release|ARM64.Build.0 = Release|ARM64
|
|
134
|
-
{F7D32BD0-2749-483E-9A0D-1635EF7E3136}.Release|x64.ActiveCfg = Release|x64
|
|
135
|
-
{F7D32BD0-2749-483E-9A0D-1635EF7E3136}.Release|x64.Build.0 = Release|x64
|
|
136
|
-
{F7D32BD0-2749-483E-9A0D-1635EF7E3136}.Release|x86.ActiveCfg = Release|Win32
|
|
137
|
-
{F7D32BD0-2749-483E-9A0D-1635EF7E3136}.Release|x86.Build.0 = Release|Win32
|
|
138
|
-
{A62D504A-16B8-41D2-9F19-E2E86019E5E4}.Debug|ARM.ActiveCfg = Debug|ARM
|
|
139
|
-
{A62D504A-16B8-41D2-9F19-E2E86019E5E4}.Debug|ARM.Build.0 = Debug|ARM
|
|
140
|
-
{A62D504A-16B8-41D2-9F19-E2E86019E5E4}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
|
141
|
-
{A62D504A-16B8-41D2-9F19-E2E86019E5E4}.Debug|ARM64.Build.0 = Debug|ARM64
|
|
142
|
-
{A62D504A-16B8-41D2-9F19-E2E86019E5E4}.Debug|x64.ActiveCfg = Debug|x64
|
|
143
|
-
{A62D504A-16B8-41D2-9F19-E2E86019E5E4}.Debug|x64.Build.0 = Debug|x64
|
|
144
|
-
{A62D504A-16B8-41D2-9F19-E2E86019E5E4}.Debug|x86.ActiveCfg = Debug|Win32
|
|
145
|
-
{A62D504A-16B8-41D2-9F19-E2E86019E5E4}.Debug|x86.Build.0 = Debug|Win32
|
|
146
|
-
{A62D504A-16B8-41D2-9F19-E2E86019E5E4}.Release|ARM.ActiveCfg = Release|ARM
|
|
147
|
-
{A62D504A-16B8-41D2-9F19-E2E86019E5E4}.Release|ARM.Build.0 = Release|ARM
|
|
148
|
-
{A62D504A-16B8-41D2-9F19-E2E86019E5E4}.Release|ARM64.ActiveCfg = Release|ARM64
|
|
149
|
-
{A62D504A-16B8-41D2-9F19-E2E86019E5E4}.Release|ARM64.Build.0 = Release|ARM64
|
|
150
|
-
{A62D504A-16B8-41D2-9F19-E2E86019E5E4}.Release|x64.ActiveCfg = Release|x64
|
|
151
|
-
{A62D504A-16B8-41D2-9F19-E2E86019E5E4}.Release|x64.Build.0 = Release|x64
|
|
152
|
-
{A62D504A-16B8-41D2-9F19-E2E86019E5E4}.Release|x86.ActiveCfg = Release|Win32
|
|
153
|
-
{A62D504A-16B8-41D2-9F19-E2E86019E5E4}.Release|x86.Build.0 = Release|Win32
|
|
154
|
-
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}.Debug|ARM.ActiveCfg = Debug|ARM
|
|
155
|
-
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}.Debug|ARM.Build.0 = Debug|ARM
|
|
156
|
-
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
|
157
|
-
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}.Debug|ARM64.Build.0 = Debug|ARM64
|
|
158
|
-
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}.Debug|x64.ActiveCfg = Debug|x64
|
|
159
|
-
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}.Debug|x64.Build.0 = Debug|x64
|
|
160
|
-
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}.Debug|x86.ActiveCfg = Debug|Win32
|
|
161
|
-
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}.Debug|x86.Build.0 = Debug|Win32
|
|
162
|
-
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}.Release|ARM.ActiveCfg = Release|ARM
|
|
163
|
-
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}.Release|ARM.Build.0 = Release|ARM
|
|
164
|
-
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}.Release|ARM64.ActiveCfg = Release|ARM64
|
|
165
|
-
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}.Release|ARM64.Build.0 = Release|ARM64
|
|
166
|
-
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}.Release|x64.ActiveCfg = Release|x64
|
|
167
|
-
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}.Release|x64.Build.0 = Release|x64
|
|
168
|
-
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}.Release|x86.ActiveCfg = Release|Win32
|
|
169
|
-
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D}.Release|x86.Build.0 = Release|Win32
|
|
170
|
-
{F2824844-CE15-4242-9420-308923CD76C3}.Debug|ARM.ActiveCfg = Debug|ARM
|
|
171
|
-
{F2824844-CE15-4242-9420-308923CD76C3}.Debug|ARM.Build.0 = Debug|ARM
|
|
172
|
-
{F2824844-CE15-4242-9420-308923CD76C3}.Debug|ARM64.ActiveCfg = Debug|ARM64
|
|
173
|
-
{F2824844-CE15-4242-9420-308923CD76C3}.Debug|ARM64.Build.0 = Debug|ARM64
|
|
174
|
-
{F2824844-CE15-4242-9420-308923CD76C3}.Debug|x64.ActiveCfg = Debug|x64
|
|
175
|
-
{F2824844-CE15-4242-9420-308923CD76C3}.Debug|x64.Build.0 = Debug|x64
|
|
176
|
-
{F2824844-CE15-4242-9420-308923CD76C3}.Debug|x86.ActiveCfg = Debug|x86
|
|
177
|
-
{F2824844-CE15-4242-9420-308923CD76C3}.Debug|x86.Build.0 = Debug|x86
|
|
178
|
-
{F2824844-CE15-4242-9420-308923CD76C3}.Release|ARM.ActiveCfg = Release|ARM
|
|
179
|
-
{F2824844-CE15-4242-9420-308923CD76C3}.Release|ARM.Build.0 = Release|ARM
|
|
180
|
-
{F2824844-CE15-4242-9420-308923CD76C3}.Release|ARM64.ActiveCfg = Release|ARM64
|
|
181
|
-
{F2824844-CE15-4242-9420-308923CD76C3}.Release|ARM64.Build.0 = Release|ARM64
|
|
182
|
-
{F2824844-CE15-4242-9420-308923CD76C3}.Release|x64.ActiveCfg = Release|x64
|
|
183
|
-
{F2824844-CE15-4242-9420-308923CD76C3}.Release|x64.Build.0 = Release|x64
|
|
184
|
-
{F2824844-CE15-4242-9420-308923CD76C3}.Release|x86.ActiveCfg = Release|x86
|
|
185
|
-
{F2824844-CE15-4242-9420-308923CD76C3}.Release|x86.Build.0 = Release|x86
|
|
186
|
-
{{/useExperimentalNuget}}
|
|
187
|
-
EndGlobalSection
|
|
188
|
-
GlobalSection(SolutionProperties) = preSolution
|
|
189
|
-
HideSolutionNode = FALSE
|
|
190
|
-
EndGlobalSection
|
|
191
|
-
{{^useExperimentalNuget}}
|
|
192
|
-
GlobalSection(NestedProjects) = preSolution
|
|
193
|
-
{A990658C-CE31-4BCC-976F-0FC6B1AF693D} = {5EA20F54-880A-49F3-99FA-4B3FE54E8AB1}
|
|
194
|
-
{A9D95A91-4DB7-4F72-BEB6-FE8A5C89BFBD} = {5EA20F54-880A-49F3-99FA-4B3FE54E8AB1}
|
|
195
|
-
{C38970C0-5FBF-4D69-90D8-CBAC225AE895} = {5EA20F54-880A-49F3-99FA-4B3FE54E8AB1}
|
|
196
|
-
{F7D32BD0-2749-483E-9A0D-1635EF7E3136} = {5EA20F54-880A-49F3-99FA-4B3FE54E8AB1}
|
|
197
|
-
{0CC28589-39E4-4288-B162-97B959F8B843} = {5EA20F54-880A-49F3-99FA-4B3FE54E8AB1}
|
|
198
|
-
{A62D504A-16B8-41D2-9F19-E2E86019E5E4} = {5EA20F54-880A-49F3-99FA-4B3FE54E8AB1}
|
|
199
|
-
{DA8B35B3-DA00-4B02-BDE6-6A397B3FD46B} = {5EA20F54-880A-49F3-99FA-4B3FE54E8AB1}
|
|
200
|
-
{FCA38F3C-7C73-4C47-BE4E-32F77FA8538D} = {5EA20F54-880A-49F3-99FA-4B3FE54E8AB1}
|
|
201
|
-
{2049DBE9-8D13-42C9-AE4B-413AE38FFFD0} = {5EA20F54-880A-49F3-99FA-4B3FE54E8AB1}
|
|
202
|
-
{F2824844-CE15-4242-9420-308923CD76C3} = {5EA20F54-880A-49F3-99FA-4B3FE54E8AB1}
|
|
203
|
-
EndGlobalSection
|
|
204
|
-
{{/useExperimentalNuget}}
|
|
205
|
-
GlobalSection(ExtensibilityGlobals) = postSolution
|
|
206
|
-
SolutionGuid = {D43FAD39-F619-437D-BB40-04A3982ACB6A}
|
|
207
|
-
EndGlobalSection
|
|
208
|
-
EndGlobal
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
using Microsoft.ReactNative;
|
|
2
|
-
{{^useWinUI3}}
|
|
3
|
-
using Windows.ApplicationModel.Activation;
|
|
4
|
-
{{/useWinUI3}}
|
|
5
|
-
using {{ xamlNamespace }};
|
|
6
|
-
using {{ xamlNamespace }}.Controls;
|
|
7
|
-
|
|
8
|
-
namespace {{ namespace }}
|
|
9
|
-
{
|
|
10
|
-
sealed partial class App : ReactApplication
|
|
11
|
-
{
|
|
12
|
-
public App()
|
|
13
|
-
{
|
|
14
|
-
#if BUNDLE
|
|
15
|
-
JavaScriptBundleFile = "index.windows";
|
|
16
|
-
InstanceSettings.UseWebDebugger = false;
|
|
17
|
-
InstanceSettings.UseFastRefresh = false;
|
|
18
|
-
#else
|
|
19
|
-
JavaScriptMainModuleName = "index";
|
|
20
|
-
InstanceSettings.UseWebDebugger = true;
|
|
21
|
-
InstanceSettings.UseFastRefresh = true;
|
|
22
|
-
#endif
|
|
23
|
-
|
|
24
|
-
#if DEBUG
|
|
25
|
-
InstanceSettings.UseDeveloperSupport = true;
|
|
26
|
-
#else
|
|
27
|
-
InstanceSettings.UseDeveloperSupport = false;
|
|
28
|
-
#endif
|
|
29
|
-
|
|
30
|
-
Microsoft.ReactNative.Managed.AutolinkedNativeModules.RegisterAutolinkedNativeModulePackages(PackageProviders); // Includes any autolinked modules
|
|
31
|
-
|
|
32
|
-
PackageProviders.Add(new Microsoft.ReactNative.Managed.ReactPackageProvider());
|
|
33
|
-
{{^useExperimentalNuget}}
|
|
34
|
-
PackageProviders.Add(new Microsoft.ReactNative.Managed.ReflectionReactPackageProvider<App>());
|
|
35
|
-
{{/useExperimentalNuget}}
|
|
36
|
-
{{#useExperimentalNuget}}
|
|
37
|
-
PackageProviders.Add(new ReactPackageProvider());
|
|
38
|
-
{{/useExperimentalNuget}}
|
|
39
|
-
|
|
40
|
-
InitializeComponent();
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
/// <summary>
|
|
44
|
-
/// Invoked when the application is launched normally by the end user. Other entry points
|
|
45
|
-
/// will be used such as when the application is launched to open a specific file.
|
|
46
|
-
/// </summary>
|
|
47
|
-
/// <param name="e">Details about the launch request and process.</param>
|
|
48
|
-
protected override void OnLaunched(LaunchActivatedEventArgs e)
|
|
49
|
-
{
|
|
50
|
-
base.OnLaunched(e);
|
|
51
|
-
var frame = Window.Current.Content as Frame;
|
|
52
|
-
frame.Navigate(typeof(MainPage));
|
|
53
|
-
Window.Current.Activate();
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
// AutolinkedNativeModules.g.cs contents generated by "react-native autolink-windows"
|
|
2
|
-
|
|
3
|
-
using System.Collections.Generic;{{ &autolinkCsUsingNamespaces }}
|
|
4
|
-
|
|
5
|
-
namespace Microsoft.ReactNative.Managed
|
|
6
|
-
{
|
|
7
|
-
internal static class AutolinkedNativeModules
|
|
8
|
-
{
|
|
9
|
-
internal static void RegisterAutolinkedNativeModulePackages(IList<IReactPackageProvider> packageProviders)
|
|
10
|
-
{ {{ &autolinkCsReactPacakgeProviders }}
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
-
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
3
|
-
<!-- AutolinkedNativeModules.g.targets contents generated by "react-native autolink-windows" -->
|
|
4
|
-
<ItemGroup>{{ &autolinkProjectReferencesForTargets }}
|
|
5
|
-
</ItemGroup>
|
|
6
|
-
</Project>
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
using Microsoft.ReactNative;
|
|
2
|
-
using System;
|
|
3
|
-
using System.Collections.Generic;
|
|
4
|
-
using System.IO;
|
|
5
|
-
using System.Linq;
|
|
6
|
-
using System.Runtime.InteropServices.WindowsRuntime;
|
|
7
|
-
using Windows.Foundation;
|
|
8
|
-
using Windows.Foundation.Collections;
|
|
9
|
-
using {{ xamlNamespace }};
|
|
10
|
-
using {{ xamlNamespace }}.Controls;
|
|
11
|
-
using {{ xamlNamespace }}.Controls.Primitives;
|
|
12
|
-
using {{ xamlNamespace }}.Data;
|
|
13
|
-
using {{ xamlNamespace }}.Input;
|
|
14
|
-
using {{ xamlNamespace }}.Media;
|
|
15
|
-
using {{ xamlNamespace }}.Navigation;
|
|
16
|
-
|
|
17
|
-
// The Blank Page item template is documented at https://go.microsoft.com/fwlink/?LinkId=234238
|
|
18
|
-
|
|
19
|
-
namespace {{ namespace }}
|
|
20
|
-
{
|
|
21
|
-
/// <summary>
|
|
22
|
-
/// An empty page that can be used on its own or navigated to within a Frame.
|
|
23
|
-
/// </summary>
|
|
24
|
-
public sealed partial class MainPage : Page
|
|
25
|
-
{
|
|
26
|
-
public MainPage()
|
|
27
|
-
{
|
|
28
|
-
this.InitializeComponent();
|
|
29
|
-
var app = Application.Current as App;
|
|
30
|
-
reactRootView.ReactNativeHost = app.Host;
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
}
|