Builds Windows package.

This commit is contained in:
Aaron Louie 2020-09-21 14:45:40 -07:00
parent 7789dbd67d
commit 964a3b7a46
38 changed files with 677 additions and 677 deletions

View File

@ -21,7 +21,7 @@
<uses-permission android:name="android.permission.WAKE_LOCK"/> <uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE"/> <uses-permission android:name="com.google.android.c2dm.permission.RECEIVE"/>
<application android:name=".MainApplication" android:label="@string/app_name" android:icon="@mipmap/ic_launcher" android:roundIcon="@mipmap/ic_launcher_round" android:allowBackup="true" android:theme="@style/AppTheme"> <application android:name=".MainApplication" android:label="@string/app_name" android:icon="@mipmap/ic_launcher" android:roundIcon="@mipmap/ic_launcher_round" android:allowBackup="true" android:theme="@style/AppTheme">
<meta-data android:name="expo.modules.updates.EXPO_UPDATE_URL" android:value="https://exp.host/@ajlouie/uva-covid19-testing-kiosk" /> <meta-data android:name="expo.modules.updates.EXPO_UPDATE_URL" android:value="https://exp.host/@ajlouie/uva_covid19_testing_kiosk" />
<meta-data android:name="expo.modules.updates.EXPO_SDK_VERSION" android:value="38.0.0" /> <meta-data android:name="expo.modules.updates.EXPO_SDK_VERSION" android:value="38.0.0" />
<meta-data android:name="expo.modules.updates.ENABLED" android:value="true"/> <meta-data android:name="expo.modules.updates.ENABLED" android:value="true"/>
<meta-data android:name="expo.modules.updates.EXPO_UPDATES_CHECK_ON_LAUNCH" android:value="ALWAYS"/> <meta-data android:name="expo.modules.updates.EXPO_UPDATES_CHECK_ON_LAUNCH" android:value="ALWAYS"/>

File diff suppressed because one or more lines are too long

View File

@ -1,3 +1,3 @@
<resources> <resources>
<string name="app_name">uva-covid19-testing-kiosk</string> <string name="app_name">uva_covid19_testing_kiosk</string>
</resources> </resources>

View File

@ -28,8 +28,8 @@ android.enableJetifier=true
# Version of flipper SDK to use with React Native # Version of flipper SDK to use with React Native
FLIPPER_VERSION=0.33.1 FLIPPER_VERSION=0.33.1
APP_UPLOAD_STORE_FILE=uva-covid19-testing-kiosk.keystore APP_UPLOAD_STORE_FILE=uva_covid19_testing_kiosk.keystore
APP_UPLOAD_KEY_ALIAS=uva-covid19-testing-kiosk APP_UPLOAD_KEY_ALIAS=uva_covid19_testing_kiosk
APP_UPLOAD_STORE_PASSWORD=l%UI8=SLsr=o1Xe$x6WdoUs<}<<(5%0uc$Dz()gw.0HwnK0ThOxiEk(Vkw1v6qMf APP_UPLOAD_STORE_PASSWORD=l%UI8=SLsr=o1Xe$x6WdoUs<}<<(5%0uc$Dz()gw.0HwnK0ThOxiEk(Vkw1v6qMf
APP_UPLOAD_KEY_PASSWORD=l%UI8=SLsr=o1Xe$x6WdoUs<}<<(5%0uc$Dz()gw.0HwnK0ThOxiEk(Vkw1v6qMf APP_UPLOAD_KEY_PASSWORD=l%UI8=SLsr=o1Xe$x6WdoUs<}<<(5%0uc$Dz()gw.0HwnK0ThOxiEk(Vkw1v6qMf
org.gradle.daemon=true org.gradle.daemon=true

View File

@ -1,8 +1,8 @@
{ {
"expo": { "expo": {
"description": "UVA Testing Kiosk", "description": "UVA Testing Kiosk",
"name": "uva-covid19-testing-kiosk", "name": "uva_covid19_testing_kiosk",
"slug": "uva-covid19-testing-kiosk", "slug": "uva_covid19_testing_kiosk",
"version": "1.0.0", "version": "1.0.0",
"orientation": "portrait", "orientation": "portrait",
"icon": "./assets/icon.png", "icon": "./assets/icon.png",

View File

@ -5,7 +5,7 @@
<key>CFBundleDevelopmentRegion</key> <key>CFBundleDevelopmentRegion</key>
<string>en</string> <string>en</string>
<key>CFBundleDisplayName</key> <key>CFBundleDisplayName</key>
<string>uva-covid19-testing-kiosk</string> <string>uva_covid19_testing_kiosk</string>
<key>CFBundleExecutable</key> <key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string> <string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key> <key>CFBundleIdentifier</key>

View File

@ -5,7 +5,7 @@
<key>EXUpdatesSDKVersion</key> <key>EXUpdatesSDKVersion</key>
<string>38.0.0</string> <string>38.0.0</string>
<key>EXUpdatesURL</key> <key>EXUpdatesURL</key>
<string>https://exp.host/@ajlouie/uva-covid19-testing-kiosk</string> <string>https://exp.host/@ajlouie/uva_covid19_testing_kiosk</string>
<key>EXUpdatesEnabled</key> <key>EXUpdatesEnabled</key>
<true/> <true/>
<key>EXUpdatesCheckOnLaunch</key> <key>EXUpdatesCheckOnLaunch</key>

BIN
msbuild.binlog Normal file

Binary file not shown.

2
package-lock.json generated
View File

@ -1,5 +1,5 @@
{ {
"name": "uva-covid19-testing-kiosk", "name": "uva_covid19_testing_kiosk",
"version": "1.0.0", "version": "1.0.0",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,

View File

@ -54,6 +54,6 @@
"typescript": "~3.9.5" "typescript": "~3.9.5"
}, },
"private": true, "private": true,
"name": "uva-covid19-testing-kiosk", "name": "uva_covid19_testing_kiosk",
"version": "1.0.0" "version": "1.0.0"
} }

View File

@ -1,13 +0,0 @@
#pragma once
#include "App.xaml.g.h"
namespace winrt::uva-covid19-testing-kiosk::implementation
{
struct App : AppT<App>
{
App() noexcept;
};
} // namespace winrt::uva-covid19-testing-kiosk::implementation

View File

@ -1,3 +0,0 @@
namespace uva-covid19-testing-kiosk
{
}

View File

@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16 # Visual Studio Version 16
VisualStudioVersion = 16.0.29215.179 VisualStudioVersion = 16.0.29215.179
MinimumVisualStudioVersion = 10.0.40219.1 MinimumVisualStudioVersion = 10.0.40219.1
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "uva-covid19-testing-kiosk", "uva-covid19-testing-kiosk\uva-covid19-testing-kiosk.vcxproj", "{C7BBA651-9F3E-4456-B91A-61D6EC2888F7}" Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "uva_covid19_testing_kiosk", "uva_covid19_testing_kiosk\uva_covid19_testing_kiosk.vcxproj", "{36E0DF5B-E46B-4215-BEE4-10C6E4988B36}"
ProjectSection(ProjectDependencies) = postProject ProjectSection(ProjectDependencies) = postProject
{F7D32BD0-2749-483E-9A0D-1635EF7E3136} = {F7D32BD0-2749-483E-9A0D-1635EF7E3136} {F7D32BD0-2749-483E-9A0D-1635EF7E3136} = {F7D32BD0-2749-483E-9A0D-1635EF7E3136}
EndProjectSection EndProjectSection
@ -45,7 +45,7 @@ Global
..\node_modules\react-native-windows\JSI\Shared\JSI.Shared.vcxitems*{0cc28589-39e4-4288-b162-97b959f8b843}*SharedItemsImports = 9 ..\node_modules\react-native-windows\JSI\Shared\JSI.Shared.vcxitems*{0cc28589-39e4-4288-b162-97b959f8b843}*SharedItemsImports = 9
..\node_modules\react-native-windows\Shared\Shared.vcxitems*{2049dbe9-8d13-42c9-ae4b-413ae38fffd0}*SharedItemsImports = 9 ..\node_modules\react-native-windows\Shared\Shared.vcxitems*{2049dbe9-8d13-42c9-ae4b-413ae38fffd0}*SharedItemsImports = 9
..\node_modules\react-native-windows\Microsoft.ReactNative.SharedManaged\Microsoft.ReactNative.SharedManaged.projitems*{67a1076f-7790-4203-86ea-4402ccb5e782}*SharedItemsImports = 13 ..\node_modules\react-native-windows\Microsoft.ReactNative.SharedManaged\Microsoft.ReactNative.SharedManaged.projitems*{67a1076f-7790-4203-86ea-4402ccb5e782}*SharedItemsImports = 13
..\node_modules\react-native-windows\Microsoft.ReactNative.Cxx\Microsoft.ReactNative.Cxx.vcxitems*{c7bba651-9f3e-4456-b91a-61d6ec2888f7}*SharedItemsImports = 4 ..\node_modules\react-native-windows\Microsoft.ReactNative.Cxx\Microsoft.ReactNative.Cxx.vcxitems*{36e0df5b-e46b-4215-bee4-10c6e4988b36}*SharedItemsImports = 4
..\node_modules\react-native-windows\JSI\Shared\JSI.Shared.vcxitems*{a62d504a-16b8-41d2-9f19-e2e86019e5e4}*SharedItemsImports = 4 ..\node_modules\react-native-windows\JSI\Shared\JSI.Shared.vcxitems*{a62d504a-16b8-41d2-9f19-e2e86019e5e4}*SharedItemsImports = 4
..\node_modules\react-native-windows\Chakra\Chakra.vcxitems*{c38970c0-5fbf-4d69-90d8-cbac225ae895}*SharedItemsImports = 9 ..\node_modules\react-native-windows\Chakra\Chakra.vcxitems*{c38970c0-5fbf-4d69-90d8-cbac225ae895}*SharedItemsImports = 9
..\node_modules\react-native-windows\Mso\Mso.vcxitems*{84e05bfa-cbaf-4f0d-bfb6-4ce85742a57e}*SharedItemsImports = 9 ..\node_modules\react-native-windows\Mso\Mso.vcxitems*{84e05bfa-cbaf-4f0d-bfb6-4ce85742a57e}*SharedItemsImports = 9
@ -67,30 +67,30 @@ Global
Release|x86 = Release|x86 Release|x86 = Release|x86
EndGlobalSection EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C7BBA651-9F3E-4456-B91A-61D6EC2888F7}.Debug|ARM.ActiveCfg = Debug|ARM {36E0DF5B-E46B-4215-BEE4-10C6E4988B36}.Debug|ARM.ActiveCfg = Debug|ARM
{C7BBA651-9F3E-4456-B91A-61D6EC2888F7}.Debug|ARM.Build.0 = Debug|ARM {36E0DF5B-E46B-4215-BEE4-10C6E4988B36}.Debug|ARM.Build.0 = Debug|ARM
{C7BBA651-9F3E-4456-B91A-61D6EC2888F7}.Debug|ARM.Deploy.0 = Debug|ARM {36E0DF5B-E46B-4215-BEE4-10C6E4988B36}.Debug|ARM.Deploy.0 = Debug|ARM
{C7BBA651-9F3E-4456-B91A-61D6EC2888F7}.Debug|ARM64.ActiveCfg = Debug|ARM64 {36E0DF5B-E46B-4215-BEE4-10C6E4988B36}.Debug|ARM64.ActiveCfg = Debug|ARM64
{C7BBA651-9F3E-4456-B91A-61D6EC2888F7}.Debug|ARM64.Build.0 = Debug|ARM64 {36E0DF5B-E46B-4215-BEE4-10C6E4988B36}.Debug|ARM64.Build.0 = Debug|ARM64
{C7BBA651-9F3E-4456-B91A-61D6EC2888F7}.Debug|ARM64.Deploy.0 = Debug|ARM64 {36E0DF5B-E46B-4215-BEE4-10C6E4988B36}.Debug|ARM64.Deploy.0 = Debug|ARM64
{C7BBA651-9F3E-4456-B91A-61D6EC2888F7}.Debug|x64.ActiveCfg = Debug|x64 {36E0DF5B-E46B-4215-BEE4-10C6E4988B36}.Debug|x64.ActiveCfg = Debug|x64
{C7BBA651-9F3E-4456-B91A-61D6EC2888F7}.Debug|x64.Build.0 = Debug|x64 {36E0DF5B-E46B-4215-BEE4-10C6E4988B36}.Debug|x64.Build.0 = Debug|x64
{C7BBA651-9F3E-4456-B91A-61D6EC2888F7}.Debug|x64.Deploy.0 = Debug|x64 {36E0DF5B-E46B-4215-BEE4-10C6E4988B36}.Debug|x64.Deploy.0 = Debug|x64
{C7BBA651-9F3E-4456-B91A-61D6EC2888F7}.Debug|x86.ActiveCfg = Debug|Win32 {36E0DF5B-E46B-4215-BEE4-10C6E4988B36}.Debug|x86.ActiveCfg = Debug|Win32
{C7BBA651-9F3E-4456-B91A-61D6EC2888F7}.Debug|x86.Build.0 = Debug|Win32 {36E0DF5B-E46B-4215-BEE4-10C6E4988B36}.Debug|x86.Build.0 = Debug|Win32
{C7BBA651-9F3E-4456-B91A-61D6EC2888F7}.Debug|x86.Deploy.0 = Debug|Win32 {36E0DF5B-E46B-4215-BEE4-10C6E4988B36}.Debug|x86.Deploy.0 = Debug|Win32
{C7BBA651-9F3E-4456-B91A-61D6EC2888F7}.Release|ARM.ActiveCfg = Release|ARM {36E0DF5B-E46B-4215-BEE4-10C6E4988B36}.Release|ARM.ActiveCfg = Release|ARM
{C7BBA651-9F3E-4456-B91A-61D6EC2888F7}.Release|ARM.Build.0 = Release|ARM {36E0DF5B-E46B-4215-BEE4-10C6E4988B36}.Release|ARM.Build.0 = Release|ARM
{C7BBA651-9F3E-4456-B91A-61D6EC2888F7}.Release|ARM.Deploy.0 = Release|ARM {36E0DF5B-E46B-4215-BEE4-10C6E4988B36}.Release|ARM.Deploy.0 = Release|ARM
{C7BBA651-9F3E-4456-B91A-61D6EC2888F7}.Release|ARM64.ActiveCfg = Release|ARM64 {36E0DF5B-E46B-4215-BEE4-10C6E4988B36}.Release|ARM64.ActiveCfg = Release|ARM64
{C7BBA651-9F3E-4456-B91A-61D6EC2888F7}.Release|ARM64.Build.0 = Release|ARM64 {36E0DF5B-E46B-4215-BEE4-10C6E4988B36}.Release|ARM64.Build.0 = Release|ARM64
{C7BBA651-9F3E-4456-B91A-61D6EC2888F7}.Release|ARM64.Deploy.0 = Release|ARM64 {36E0DF5B-E46B-4215-BEE4-10C6E4988B36}.Release|ARM64.Deploy.0 = Release|ARM64
{C7BBA651-9F3E-4456-B91A-61D6EC2888F7}.Release|x64.ActiveCfg = Release|x64 {36E0DF5B-E46B-4215-BEE4-10C6E4988B36}.Release|x64.ActiveCfg = Release|x64
{C7BBA651-9F3E-4456-B91A-61D6EC2888F7}.Release|x64.Build.0 = Release|x64 {36E0DF5B-E46B-4215-BEE4-10C6E4988B36}.Release|x64.Build.0 = Release|x64
{C7BBA651-9F3E-4456-B91A-61D6EC2888F7}.Release|x64.Deploy.0 = Release|x64 {36E0DF5B-E46B-4215-BEE4-10C6E4988B36}.Release|x64.Deploy.0 = Release|x64
{C7BBA651-9F3E-4456-B91A-61D6EC2888F7}.Release|x86.ActiveCfg = Release|Win32 {36E0DF5B-E46B-4215-BEE4-10C6E4988B36}.Release|x86.ActiveCfg = Release|Win32
{C7BBA651-9F3E-4456-B91A-61D6EC2888F7}.Release|x86.Build.0 = Release|Win32 {36E0DF5B-E46B-4215-BEE4-10C6E4988B36}.Release|x86.Build.0 = Release|Win32
{C7BBA651-9F3E-4456-B91A-61D6EC2888F7}.Release|x86.Deploy.0 = Release|Win32 {36E0DF5B-E46B-4215-BEE4-10C6E4988B36}.Release|x86.Deploy.0 = Release|Win32
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Debug|ARM.ActiveCfg = Debug|ARM {A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Debug|ARM.ActiveCfg = Debug|ARM
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Debug|ARM.Build.0 = Debug|ARM {A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Debug|ARM.Build.0 = Debug|ARM
{A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Debug|ARM64.ActiveCfg = Debug|ARM64 {A990658C-CE31-4BCC-976F-0FC6B1AF693D}.Debug|ARM64.ActiveCfg = Debug|ARM64

View File

@ -6,8 +6,8 @@
#include "ReactPackageProvider.h" #include "ReactPackageProvider.h"
using namespace winrt::uva-covid19-testing-kiosk; using namespace winrt::uva_covid19_testing_kiosk;
using namespace winrt::uva-covid19-testing-kiosk::implementation; using namespace winrt::uva_covid19_testing_kiosk::implementation;
/// <summary> /// <summary>
/// Initializes the singleton application object. This is the first line of /// Initializes the singleton application object. This is the first line of
@ -16,7 +16,7 @@ using namespace winrt::uva-covid19-testing-kiosk::implementation;
/// </summary> /// </summary>
App::App() noexcept App::App() noexcept
{ {
MainComponentName(L"uva-covid19-testing-kiosk"); MainComponentName(L"uva_covid19_testing_kiosk");
#if BUNDLE #if BUNDLE
JavaScriptBundleFile(L"index.windows"); JavaScriptBundleFile(L"index.windows");

View File

@ -0,0 +1,13 @@
#pragma once
#include "App.xaml.g.h"
namespace winrt::uva_covid19_testing_kiosk::implementation
{
struct App : AppT<App>
{
App() noexcept;
};
} // namespace winrt::uva_covid19_testing_kiosk::implementation

View File

@ -0,0 +1,3 @@
namespace uva_covid19_testing_kiosk
{
}

View File

@ -1,8 +1,8 @@
<react:ReactApplication <react:ReactApplication
x:Class="uva-covid19-testing-kiosk.App" x:Class="uva_covid19_testing_kiosk.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:uva-covid19-testing-kiosk" xmlns:local="using:uva_covid19_testing_kiosk"
xmlns:react="using:Microsoft.ReactNative"> xmlns:react="using:Microsoft.ReactNative">
<Application.Resources> <Application.Resources>
<XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" /> <XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" />

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

Before

Width:  |  Height:  |  Size: 7.5 KiB

After

Width:  |  Height:  |  Size: 7.5 KiB

View File

Before

Width:  |  Height:  |  Size: 1.6 KiB

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

Before

Width:  |  Height:  |  Size: 3.1 KiB

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@ -7,14 +7,14 @@
IgnorableNamespaces="uap mp"> IgnorableNamespaces="uap mp">
<Identity <Identity
Name="2e5054eb-8e41-4e7c-9011-e2d06752821f" Name="2eee821e-676e-49bb-b542-57fe1d19f069"
Publisher="CN=ajl" Publisher="CN=ajl"
Version="1.0.0.0" /> Version="1.0.0.0" />
<mp:PhoneIdentity PhoneProductId="2e5054eb-8e41-4e7c-9011-e2d06752821f" PhonePublisherId="00000000-0000-0000-0000-000000000000"/> <mp:PhoneIdentity PhoneProductId="2eee821e-676e-49bb-b542-57fe1d19f069" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
<Properties> <Properties>
<DisplayName>uva-covid19-testing-kiosk</DisplayName> <DisplayName>uva_covid19_testing_kiosk</DisplayName>
<PublisherDisplayName>ajl</PublisherDisplayName> <PublisherDisplayName>ajl</PublisherDisplayName>
<Logo>Assets\StoreLogo.png</Logo> <Logo>Assets\StoreLogo.png</Logo>
</Properties> </Properties>
@ -30,12 +30,12 @@
<Applications> <Applications>
<Application Id="App" <Application Id="App"
Executable="$targetnametoken$.exe" Executable="$targetnametoken$.exe"
EntryPoint="uva-covid19-testing-kiosk.App"> EntryPoint="uva_covid19_testing_kiosk.App">
<uap:VisualElements <uap:VisualElements
DisplayName="uva-covid19-testing-kiosk" DisplayName="uva_covid19_testing_kiosk"
Square150x150Logo="Assets\Square150x150Logo.png" Square150x150Logo="Assets\Square150x150Logo.png"
Square44x44Logo="Assets\Square44x44Logo.png" Square44x44Logo="Assets\Square44x44Logo.png"
Description="uva-covid19-testing-kiosk" Description="uva_covid19_testing_kiosk"
BackgroundColor="transparent"> BackgroundColor="transparent">
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"/> <uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"/>
<uap:SplashScreen Image="Assets\SplashScreen.png" /> <uap:SplashScreen Image="Assets\SplashScreen.png" />

View File

@ -5,7 +5,7 @@
using namespace winrt::Microsoft::ReactNative; using namespace winrt::Microsoft::ReactNative;
namespace winrt::uva-covid19-testing-kiosk::implementation namespace winrt::uva_covid19_testing_kiosk::implementation
{ {
void ReactPackageProvider::CreatePackage(IReactPackageBuilder const &packageBuilder) noexcept void ReactPackageProvider::CreatePackage(IReactPackageBuilder const &packageBuilder) noexcept
@ -13,6 +13,6 @@ void ReactPackageProvider::CreatePackage(IReactPackageBuilder const &packageBuil
AddAttributedModules(packageBuilder); AddAttributedModules(packageBuilder);
} }
} // namespace winrt::uva-covid19-testing-kiosk::implementation } // namespace winrt::uva_covid19_testing_kiosk::implementation

View File

@ -3,13 +3,13 @@
#include "winrt/Microsoft.ReactNative.h" #include "winrt/Microsoft.ReactNative.h"
namespace winrt::uva-covid19-testing-kiosk::implementation namespace winrt::uva_covid19_testing_kiosk::implementation
{ {
struct ReactPackageProvider : winrt::implements<ReactPackageProvider, winrt::Microsoft::ReactNative::IReactPackageProvider> struct ReactPackageProvider : winrt::implements<ReactPackageProvider, winrt::Microsoft::ReactNative::IReactPackageProvider>
{ {
public: // IReactPackageProvider public: // IReactPackageProvider
void CreatePackage(winrt::Microsoft::ReactNative::IReactPackageBuilder const &packageBuilder) noexcept; void CreatePackage(winrt::Microsoft::ReactNative::IReactPackageBuilder const &packageBuilder) noexcept;
}; };
} // namespace winrt::uva-covid19-testing-kiosk::implementation } // namespace winrt::uva_covid19_testing_kiosk::implementation

View File

@ -5,9 +5,9 @@
<CppWinRTOptimized>true</CppWinRTOptimized> <CppWinRTOptimized>true</CppWinRTOptimized>
<CppWinRTRootNamespaceAutoMerge>true</CppWinRTRootNamespaceAutoMerge> <CppWinRTRootNamespaceAutoMerge>true</CppWinRTRootNamespaceAutoMerge>
<MinimalCoreWin>true</MinimalCoreWin> <MinimalCoreWin>true</MinimalCoreWin>
<ProjectGuid>{c7bba651-9f3e-4456-b91a-61d6ec2888f7}</ProjectGuid> <ProjectGuid>{36e0df5b-e46b-4215-bee4-10c6e4988b36}</ProjectGuid>
<ProjectName>uva-covid19-testing-kiosk</ProjectName> <ProjectName>uva_covid19_testing_kiosk</ProjectName>
<RootNamespace>uva-covid19-testing-kiosk</RootNamespace> <RootNamespace>uva_covid19_testing_kiosk</RootNamespace>
<DefaultLanguage>en-US</DefaultLanguage> <DefaultLanguage>en-US</DefaultLanguage>
<MinimumVisualStudioVersion>16.0</MinimumVisualStudioVersion> <MinimumVisualStudioVersion>16.0</MinimumVisualStudioVersion>
<AppContainerApplication>true</AppContainerApplication> <AppContainerApplication>true</AppContainerApplication>
@ -15,8 +15,8 @@
<ApplicationTypeRevision>10.0</ApplicationTypeRevision> <ApplicationTypeRevision>10.0</ApplicationTypeRevision>
<WindowsTargetPlatformVersion Condition=" '$(WindowsTargetPlatformVersion)' == '' ">10.0.18362.0</WindowsTargetPlatformVersion> <WindowsTargetPlatformVersion Condition=" '$(WindowsTargetPlatformVersion)' == '' ">10.0.18362.0</WindowsTargetPlatformVersion>
<WindowsTargetPlatformMinVersion>10.0.16299.0</WindowsTargetPlatformMinVersion> <WindowsTargetPlatformMinVersion>10.0.16299.0</WindowsTargetPlatformMinVersion>
<PackageCertificateKeyFile>uva-covid19-testing-kiosk_TemporaryKey.pfx</PackageCertificateKeyFile> <PackageCertificateKeyFile>uva_covid19_testing_kiosk_TemporaryKey.pfx</PackageCertificateKeyFile>
<PackageCertificateThumbprint>53094FDF9153BB6D5BF3FF56060BDFE82ACE1D82</PackageCertificateThumbprint>
<PackageCertificatePassword>password</PackageCertificatePassword> <PackageCertificatePassword>password</PackageCertificatePassword>
</PropertyGroup> </PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" /> <Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />